diff options
author | thomascube <thomas@roundcube.net> | 2011-02-06 22:16:23 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-02-06 22:16:23 +0000 |
commit | 361ce60948bfc0eb75a4c144f9e1e76c3cdd7f35 (patch) | |
tree | 9e8e733c23b4125a8ecf83719ee74e06b0144fcd /skins/default/functions.js | |
parent | ed33d19de90a837c29acf4c1f48fa6b2ed328830 (diff) |
Make iframe headers fixed; don't jump to top when switching tabs
Diffstat (limited to 'skins/default/functions.js')
-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 d26097f9c..349782627 100644 --- a/skins/default/functions.js +++ b/skins/default/functions.js @@ -46,7 +46,7 @@ function rcube_init_tabs(id, current) // create a tab a = $('<a>').text(legend.text()).attr('href', '#'); tab = $('<span>').attr({'id': 'tab'+idx, 'class': 'tablink'}) - .click(function() { return rcube_show_tab(id, idx); }) + .click(function() { rcube_show_tab(id, idx); return false }) // remove legend legend.remove(); |