mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Fix escaping special character as advised at
https://github.com/jquery/jquery/issues/2885 Thanks to xet7 !
This commit is contained in:
parent
6c0df108c7
commit
ebba71077e
1 changed files with 1 additions and 1 deletions
|
@ -135,6 +135,6 @@ $(document).on('click', (evt) => {
|
|||
}
|
||||
});
|
||||
|
||||
$(document).on('click', 'a[href=#]', (evt) => {
|
||||
$(document).on('click', 'a[href=\\#]', (evt) => {
|
||||
evt.preventDefault();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue