Skip to content

Commit

Permalink
[bug] fix shade radius control dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieFox committed Jun 13, 2019
1 parent f9a0485 commit 37a7005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions js/control.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion js/version.js
Original file line number Diff line number Diff line change
@@ -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(".");
Expand Down

0 comments on commit 37a7005

Please sign in to comment.