[bug] fix shade rendering when changing layout order

This commit is contained in:
Kuldeep M 2019-07-03 19:13:23 +01:00
parent f2b6aeedc5
commit d23e7e567d
3 changed files with 4 additions and 4 deletions

View File

@ -145,18 +145,18 @@ var control = (function() {
path: "layout.order", path: "layout.order",
type: "radio", type: "radio",
func: function() { func: function() {
render();
layout.render.order(); layout.render.order();
header.render.shade(); header.render.shade();
render();
} }
}, { }, {
element: helper.e(".control-layout-order-linkheader"), element: helper.e(".control-layout-order-linkheader"),
path: "layout.order", path: "layout.order",
type: "radio", type: "radio",
func: function() { func: function() {
render();
layout.render.order(); layout.render.order();
header.render.shade(); header.render.shade();
render();
} }
}, { }, {
element: helper.e(".control-layout-padding"), element: helper.e(".control-layout-padding"),

View File

@ -1,6 +1,6 @@
var version = (function() { var version = (function() {
var current = "3.30.4"; var current = "3.30.5";
var compare = function(a, b) { var compare = function(a, b) {
var pa = a.split("."); var pa = a.split(".");

View File

@ -2,7 +2,7 @@
"name": "nightTab", "name": "nightTab",
"short_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.", "description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"version": "3.30.4", "version": "3.30.5",
"manifest_version": 2, "manifest_version": 2,
"chrome_url_overrides": { "chrome_url_overrides": {
"newtab": "index.html" "newtab": "index.html"