[bug] add missing key and value for state update

This commit is contained in:
Kuldeep M 2019-05-23 19:44:52 +01:00
parent 360135b94b
commit a0d4da5c09
2 changed files with 2 additions and 1 deletions

View File

@ -369,6 +369,7 @@ var update = (function() {
vertical: "center" vertical: "center"
}; };
data.state.edge = false; data.state.edge = false;
data.state.autoSuggest = false;
return data; return data;
}; };

View File

@ -1,7 +1,7 @@
var version = (function() { var version = (function() {
// version is normally bumped when the state needs changing or any new functionality is added // version is normally bumped when the state needs changing or any new functionality is added
var current = "3.1.2"; var current = "3.1.3";
var compare = function(a, b) { var compare = function(a, b) {
var pa = a.split("."); var pa = a.split(".");