[bug] fix scroll disabled not being removed in some scenarios

This commit is contained in:
Kuldeep M 2019-05-23 19:51:59 +01:00
parent a0d4da5c09
commit d7f63d7bdc
3 changed files with 3 additions and 1 deletions

View File

@ -68,6 +68,7 @@ var link = (function() {
}, },
cancelAction: function() { cancelAction: function() {
resetStagedBookmarkData(); resetStagedBookmarkData();
autoSuggest.destroy();
}, },
actionText: "Add", actionText: "Add",
size: "small", size: "small",

View File

@ -6,6 +6,7 @@ var menu = (function() {
allMenuNavButton.forEach(function(arrayItem, index) { allMenuNavButton.forEach(function(arrayItem, index) {
arrayItem.addEventListener("click", function() { arrayItem.addEventListener("click", function() {
_tab(this); _tab(this);
page.update();
}, false); }, false);
}); });
menuClose.addEventListener("click", function() { menuClose.addEventListener("click", function() {

View File

@ -1,7 +1,7 @@
var version = (function() { var version = (function() {
// version is normally bumped when the state needs changing or any new functionality is added // 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 compare = function(a, b) {
var pa = a.split("."); var pa = a.split(".");