Skip to content

Commit d7f63d7

Browse files
committed
[bug] fix scroll disabled not being removed in some scenarios
1 parent a0d4da5 commit d7f63d7

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

‎js/link.js‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ var link = (function(){
6868
},
6969
cancelAction: function(){
7070
resetStagedBookmarkData();
71+
autoSuggest.destroy();
7172
},
7273
actionText: "Add",
7374
size: "small",

‎js/menu.js‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ var menu = (function(){
66
allMenuNavButton.forEach(function(arrayItem,index){
77
arrayItem.addEventListener("click",function(){
88
_tab(this);
9+
page.update();
910
},false);
1011
});
1112
menuClose.addEventListener("click",function(){

‎js/version.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
varversion=(function(){
22

33
// version is normally bumped when the state needs changing or any new functionality is added
4-
varcurrent="3.1.3";
4+
varcurrent="3.1.4";
55

66
varcompare=function(a,b){
77
varpa=a.split(".");

0 commit comments

Comments
(0)