diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-18 18:25:26 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-18 18:25:26 -0500 |
commit | 883a96172065b5eb7b07f7c6e19ff2b1d5079ef9 (patch) | |
tree | 75c89004b7600793de45a740ae39be4495d8d3ef /phpBB | |
parent | 3f27890a5e78849582cb1ffec485ee3492671837 (diff) | |
download | forums-883a96172065b5eb7b07f7c6e19ff2b1d5079ef9.tar forums-883a96172065b5eb7b07f7c6e19ff2b1d5079ef9.tar.gz forums-883a96172065b5eb7b07f7c6e19ff2b1d5079ef9.tar.bz2 forums-883a96172065b5eb7b07f7c6e19ff2b1d5079ef9.tar.xz forums-883a96172065b5eb7b07f7c6e19ff2b1d5079ef9.zip |
[ticket/11103] Use e.preventDefault();
PHPBB3-11103
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/template/ajax.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js index 3c5e1a1c12..c221a47b48 100644 --- a/phpBB/styles/prosilver/template/ajax.js +++ b/phpBB/styles/prosilver/template/ajax.js @@ -77,9 +77,9 @@ $('#qr_full_editor').click(function() { }); // Toggle notification list -$('#notification_list_button').click(function() { +$('#notification_list_button').click(function(e) { $('#notification_list').toggle(); - return false; + e.preventDefault(); }); $('#phpbb').click(function(e) { var target = e.target; |