Skip to content

Commit 3359917

Browse files
committed
[bug] fix scroll disabled not being removed when menu is closed
1 parent d7f63d7 commit 3359917

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎js/menu.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ var menu = (function(){
66
allMenuNavButton.forEach(function(arrayItem,index){
77
arrayItem.addEventListener("click",function(){
88
_tab(this);
9-
page.update();
109
},false);
1110
});
1211
menuClose.addEventListener("click",function(){
1312
close();
1413
shade.destroy();
14+
page.update();
1515
},false);
1616
};
1717

‎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.4";
4+
varcurrent="3.1.5";
55

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

0 commit comments

Comments
(0)