chore: eslint no-script-url

v1.18.x
Peter Jaszkowiak 4 years ago committed by Julian Lam
parent dad01e3051
commit 9f6a682ca9

@ -114,7 +114,6 @@
"prefer-template": "off",
"no-var": "off",
"vars-on-top": "off",
"no-script-url": "off",
"import/newline-after-import": "off",
// TODO

@ -446,6 +446,7 @@ $(document).ready(function () {
function ajaxifyAnchors() {
function hrefEmpty(href) {
// eslint-disable-next-line no-script-url
return href === undefined || href === '' || href === 'javascript:;';
}
var location = document.location || window.location;
@ -516,6 +517,7 @@ $(document).ready(function () {
return;
}
// eslint-disable-next-line no-script-url
if (hrefEmpty(this.href) || this.protocol === 'javascript:' || href === '#' || href === '') {
return e.preventDefault();
}

Loading…
Cancel
Save