1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-27 05:25:47 +02:00

[ticket/11103] Use e.preventDefault();

PHPBB3-11103
This commit is contained in:
Nathan Guse
2012-10-18 18:25:26 -05:00
parent 3f27890a5e
commit 883a961720

View File

@ -77,9 +77,9 @@ $('#qr_full_editor').click(function() {
}); });
// Toggle notification list // Toggle notification list
$('#notification_list_button').click(function() { $('#notification_list_button').click(function(e) {
$('#notification_list').toggle(); $('#notification_list').toggle();
return false; e.preventDefault();
}); });
$('#phpbb').click(function(e) { $('#phpbb').click(function(e) {
var target = e.target; var target = e.target;