diff --git a/package-lock.json b/package-lock.json index 34d6f9d8..95a651f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nightTab", - "version": "5.7.0", + "version": "5.7.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5148bbc0..9b0b2876 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/js/control.js b/src/js/control.js index eb09bfff..7bfe3d08 100644 --- a/src/js/control.js +++ b/src/js/control.js @@ -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) { diff --git a/src/js/version.js b/src/js/version.js index f2c70b80..f2a28045 100644 --- a/src/js/version.js +++ b/src/js/version.js @@ -1,6 +1,6 @@ var version = (function() { - var current = "5.7.0"; + var current = "5.7.1"; var name = "Zonked Tarsier"; diff --git a/src/manifest.json b/src/manifest.json index 9e7590a6..c3f16e45 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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"