diff options
author | alecpl <alec@alec.pl> | 2011-01-03 20:29:18 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-01-03 20:29:18 +0000 |
commit | 5206569e85475be1bc0cd144fc00ea88a20ca594 (patch) | |
tree | 75c7691a8b63ff7a39d192661d346e06f9386f9a /skins | |
parent | aff04d6fc4dd5a63b0ee91427917287f8a5d928f (diff) |
- Fix tabs when have fieldset inside a fieldset
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/default/functions.js b/skins/default/functions.js index 77cdeb8d2..00e97fd1a 100644 --- a/skins/default/functions.js +++ b/skins/default/functions.js @@ -67,7 +67,7 @@ function rcube_init_tabs(id, current) function rcube_show_tab(id, index) { var content = document.getElementById(id), - fs = $('fieldset', content); + fs = $('fieldset', content).not('fieldset > fieldset'); fs.each(function(idx) { // Show/hide fieldset (tab content) |