Changeset 4212 in subversion
- Timestamp:
- Nov 10, 2010 7:44:13 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/skins/default/functions.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/skins/default/functions.js
r4070 r4212 27 27 { 28 28 var content = document.getElementById(id), 29 fs = $('fieldset', content); 29 // get fieldsets of the higher-level (skip nested fieldsets) 30 fs = $('fieldset', content).not('fieldset > fieldset'); 31 32 if (!fs.length) 33 return; 30 34 31 35 current = current ? current : 0; … … 39 43 // convert fildsets into tabs 40 44 fs.each(function(idx) { 41 var tab, a, elm = $(this), legend = $('legend', elm); 45 var tab, a, elm = $(this), 46 // get first legend element 47 legend = $(elm).children('legend'); 42 48 43 49 // create a tab
Note: See TracChangeset
for help on using the changeset viewer.
