[bug] fix broke state path for modal

This commit is contained in:
Kuldeep M 2019-02-25 15:00:49 +00:00
parent db152ff900
commit 89dff38f5d
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ var modal = (function() {
var body = helper.e("body");
helper.setObject({
object: state.get(),
path: "modal.active",
path: "modal",
newValue: true
});
var modalWrapper = document.createElement("div");
@ -50,7 +50,7 @@ var modal = (function() {
};
helper.setObject({
object: state.get(),
path: "modal.active",
path: "modal",
newValue: false
});
};

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