[bug] fix additional events on controls not saving state when fired

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

View File

@ -1752,6 +1752,7 @@ var control = (function() {
object.additionalEvents.forEach(function(item, index) {
object.element.addEventListener(item.event, function(event) {
item.func(event);
data.save();
}, 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 = "3.1.1";
var current = "3.1.2";
var compare = function(a, b) {
var pa = a.split(".");