diff options
author | Wu Cheng-Han | 2017-01-16 12:42:21 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2017-01-16 12:42:21 +0800 |
commit | e00daee6c0dd0c6e5f2654d24995bc9d86fbc452 (patch) | |
tree | 0486a32a99845a6a118a96f0fb6490bbef9a4cab /public | |
parent | 3c0667813cb1a3d5a0d730eabc70835b52518dfe (diff) |
Update to prevent all empty link change hash
Diffstat (limited to '')
-rw-r--r-- | public/js/cover.js | 9 | ||||
-rw-r--r-- | public/js/index.js | 4 |
2 files changed, 9 insertions, 4 deletions
diff --git a/public/js/cover.js b/public/js/cover.js index 52ff5a27..f8ffe9bf 100644 --- a/public/js/cover.js +++ b/public/js/cover.js @@ -91,9 +91,12 @@ $(".masthead-nav li").click(function () { $(this).addClass("active"); }); -$(".ui-home").click(function (e) { +// prevent empty link change hash +$('a[href="#"]').click(function (e) { e.preventDefault(); - e.stopPropagation(); +}); + +$(".ui-home").click(function (e) { if (!$("#home").is(':visible')) { $(".section:visible").hide(); $("#home").fadeIn(); @@ -101,8 +104,6 @@ $(".ui-home").click(function (e) { }); $(".ui-history").click(function (e) { - e.preventDefault(); - e.stopPropagation(); if (!$("#history").is(':visible')) { $(".section:visible").hide(); $("#history").fadeIn(); diff --git a/public/js/index.js b/public/js/index.js index 14235bc3..a018e513 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1754,6 +1754,10 @@ ui.toolbar.uploadImage.bind('change', function (e) { ui.toc.dropdown.click(function (e) { e.stopPropagation(); }); +// prevent empty link change hash +$('a[href="#"]').click(function (e) { + e.preventDefault(); +}); //modal actions var revisions = []; |