[bug] fix shade radius control dependency

This commit is contained in:
Kuldeep M 2019-06-13 23:39:18 +01:00
parent f9a0485ce9
commit 37a7005c42
2 changed files with 3 additions and 1 deletions

View File

@ -2537,11 +2537,13 @@ var control = (function() {
helper.e(".control-header-shade-style-scroll").disabled = false;
helper.e("[for=control-header-shade-opacity]").removeAttribute("disabled");
helper.e(".control-header-shade-opacity").disabled = false;
helper.e(".control-header-radius").disabled = false;
} else {
helper.e(".control-header-shade-style-always").disabled = true;
helper.e(".control-header-shade-style-scroll").disabled = true;
helper.e("[for=control-header-shade-opacity]").setAttribute("disabled", "");
helper.e(".control-header-shade-opacity").disabled = true;
helper.e(".control-header-radius").disabled = true;
};
};
var _search = function() {

View File

@ -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.10.1";
var current = "3.10.2";
var compare = function(a, b) {
var pa = a.split(".");