From 37a7005c423241d46988e15ea6782578b092bb51 Mon Sep 17 00:00:00 2001 From: Kuldeep M Date: Thu, 13 Jun 2019 23:39:18 +0100 Subject: [PATCH] [bug] fix shade radius control dependency --- js/control.js | 2 ++ js/version.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/js/control.js b/js/control.js index 75ba24ff..7c25375d 100644 --- a/js/control.js +++ b/js/control.js @@ -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() { diff --git a/js/version.js b/js/version.js index 1aad14ab..4780f088 100644 --- a/js/version.js +++ b/js/version.js @@ -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(".");