[bug] fix broke state path for edit control

This commit is contained in:
Kuldeep M 2019-02-25 14:51:59 +00:00
parent 6506b3327e
commit 049df95579
3 changed files with 2 additions and 10 deletions

View File

@ -956,14 +956,6 @@ var control = (function() {
};
var update = function() {
var eventType = {
button: "click",
checkbox: "change",
radio: "change",
text: "input",
range: "input",
color: "change"
};
var valueMod = {
reverse: function(value, element) {
return parseInt(element.max, 10) - value;

View File

@ -13,7 +13,7 @@ var keyboard = (function() {
} else if (state.get().bookmarks.edit) {
helper.setObject({
object: state.get(),
path: "edit.active",
path: "bookmarks.edit",
newValue: false
});
control.update();

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 = "2.9.2";
var current = "2.9.3";
var get = function() {
var number = current.split(".");