mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-26 12:31:47 +02:00
[bug] fix scroll disabled not being removed in some scenarios
This commit is contained in:
parent
a0d4da5c09
commit
d7f63d7bdc
@ -68,6 +68,7 @@ var link = (function() {
|
|||||||
},
|
},
|
||||||
cancelAction: function() {
|
cancelAction: function() {
|
||||||
resetStagedBookmarkData();
|
resetStagedBookmarkData();
|
||||||
|
autoSuggest.destroy();
|
||||||
},
|
},
|
||||||
actionText: "Add",
|
actionText: "Add",
|
||||||
size: "small",
|
size: "small",
|
||||||
|
@ -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() {
|
||||||
|
@ -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(".");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user