mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-26 04:21:38 +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() {
|
||||
resetStagedBookmarkData();
|
||||
autoSuggest.destroy();
|
||||
},
|
||||
actionText: "Add",
|
||||
size: "small",
|
||||
|
@ -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() {
|
||||
|
@ -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(".");
|
||||
|
Loading…
x
Reference in New Issue
Block a user