From 883a96172065b5eb7b07f7c6e19ff2b1d5079ef9 Mon Sep 17 00:00:00 2001 From: Nathan Guse Date: Thu, 18 Oct 2012 18:25:26 -0500 Subject: [PATCH] [ticket/11103] Use e.preventDefault(); PHPBB3-11103 --- phpBB/styles/prosilver/template/ajax.js | 4 ++-- 1 file 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;