mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02:00
[ticket/11103] Return false to prevent appending # to the URL
PHPBB3-11103
This commit is contained in:
@@ -79,6 +79,7 @@ $('#qr_full_editor').click(function() {
|
|||||||
// Toggle notification list
|
// Toggle notification list
|
||||||
$('#notification_list_button').click(function() {
|
$('#notification_list_button').click(function() {
|
||||||
$('#notification_list').toggle();
|
$('#notification_list').toggle();
|
||||||
|
return false;
|
||||||
});
|
});
|
||||||
$('#phpbb').click(function(e) {
|
$('#phpbb').click(function(e) {
|
||||||
var target = e.target;
|
var target = e.target;
|
||||||
|
@@ -150,7 +150,7 @@ function marklist(id, name, state)
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="genmed">
|
<td class="genmed">
|
||||||
<!-- IF S_NOTIFICATIONS_DISPLAY -->
|
<!-- IF S_NOTIFICATIONS_DISPLAY -->
|
||||||
[ <a href="#" id="notification_list_button" title="{NOTIFICATIONS_COUNT}" onclick="$('#notification_list').toggle();">{NOTIFICATIONS_COUNT}</a> ] •
|
[ <a href="#" id="notification_list_button" title="{NOTIFICATIONS_COUNT}" onclick="$('#notification_list').toggle(); return false;">{NOTIFICATIONS_COUNT}</a> ] •
|
||||||
<div id="notification_list" class="notification_list">
|
<div id="notification_list" class="notification_list">
|
||||||
<div class="row1 header">
|
<div class="row1 header">
|
||||||
{L_NOTIFICATIONS}
|
{L_NOTIFICATIONS}
|
||||||
|
Reference in New Issue
Block a user