mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-02-10 07:19:38 +01:00
[bug] fix control value modify loop
This commit is contained in:
parent
8a234de5df
commit
1c0a499944
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.7.0",
|
||||
"version": "5.7.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "5.7.0",
|
||||
"version": "5.7.1",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -7357,7 +7357,7 @@ var control = (function() {
|
||||
});
|
||||
};
|
||||
if (object.valueModify) {
|
||||
object.mirrorElement.forEach(function(arrayItem, index) {
|
||||
for (var key in object.valueModify) {
|
||||
helper.e(object.element).addEventListener(bind.control.eventType[object.type], function(event) {
|
||||
var _update = function() {
|
||||
render.update.control.menu(object);
|
||||
@ -7365,7 +7365,7 @@ var control = (function() {
|
||||
clearTimeout(bind.control.timer.inputUpdate);
|
||||
bind.control.timer.inputUpdate = setTimeout(_update, 1000);
|
||||
}, false);
|
||||
});
|
||||
};
|
||||
};
|
||||
},
|
||||
header: function(object) {
|
||||
|
@ -1,6 +1,6 @@
|
||||
var version = (function() {
|
||||
|
||||
var current = "5.7.0";
|
||||
var current = "5.7.1";
|
||||
|
||||
var name = "Zonked Tarsier";
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "nightTab",
|
||||
"short_name": "nightTab",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"version": "5.7.0",
|
||||
"version": "5.7.1",
|
||||
"manifest_version": 2,
|
||||
"chrome_url_overrides": {
|
||||
"newtab": "index.html"
|
||||
|
Loading…
Reference in New Issue
Block a user