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:
@ -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;
|
||||||
|
Reference in New Issue
Block a user