aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/styles/prosilver/template/ajax.js4
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;