diff --git a/js/link.js b/js/link.js index 76044094..ef963173 100644 --- a/js/link.js +++ b/js/link.js @@ -68,6 +68,7 @@ var link = (function() { }, cancelAction: function() { resetStagedBookmarkData(); + autoSuggest.destroy(); }, actionText: "Add", size: "small", diff --git a/js/menu.js b/js/menu.js index 5ba33921..e8cd12e3 100644 --- a/js/menu.js +++ b/js/menu.js @@ -6,6 +6,7 @@ var menu = (function() { allMenuNavButton.forEach(function(arrayItem, index) { arrayItem.addEventListener("click", function() { _tab(this); + page.update(); }, false); }); menuClose.addEventListener("click", function() { diff --git a/js/version.js b/js/version.js index e241df5e..6b7ba867 100644 --- a/js/version.js +++ b/js/version.js @@ -1,7 +1,7 @@ var version = (function() { // version is normally bumped when the state needs changing or any new functionality is added - var current = "3.1.3"; + var current = "3.1.4"; var compare = function(a, b) { var pa = a.split(".");