Browse Source

Fix escaping special character as advised at
https://github.com/jquery/jquery/issues/2885

Thanks to xet7 !

Lauri Ojansivu 6 years ago
parent
commit
ebba71077e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/lib/escapeActions.js

+ 1 - 1
client/lib/escapeActions.js

@@ -135,6 +135,6 @@ $(document).on('click', (evt) => {
   }
   }
 });
 });
 
 
-$(document).on('click', 'a[href=#]',  (evt) => {
+$(document).on('click', 'a[href=\\#]',  (evt) => {
   evt.preventDefault();
   evt.preventDefault();
 });
 });