diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-01-03 20:29:18 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-01-03 20:29:18 +0000 |
| commit | 5b18483a2a7a949b1c0205ff3c6deead7b4efd01 (patch) | |
| tree | 36b2e07c3cb902e33518842610f9aad049b661ba | |
| parent | 543cef5d319f68b665720426e9427dde5d9ce3af (diff) | |
- Fix tabs when have fieldset inside a fieldset
git-svn-id: https://svn.roundcube.net/trunk@4385 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/skins/default/functions.js b/roundcubemail/skins/default/functions.js index 77cdeb8d2..00e97fd1a 100644 --- a/roundcubemail/skins/default/functions.js +++ b/roundcubemail/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) |
