From d7f63d7bdc17a79109f8abfc70fcd63a5a932add Mon Sep 17 00:00:00 2001 From: Kuldeep M Date: Thu, 23 May 2019 19:51:59 +0100 Subject: [PATCH] [bug] fix scroll disabled not being removed in some scenarios --- js/link.js | 1 + js/menu.js | 1 + js/version.js | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) 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(".");