v1.14.0-djmaze5

This commit is contained in:
djmaze 2020-08-31 16:33:40 +02:00
parent dcdaf70601
commit 088945b636
5 changed files with 43 additions and 48 deletions

9
dev/External/ko.js vendored
View file

@ -628,15 +628,6 @@ ko.observable.fn.validateEmail = function() {
return this;
};
ko.observable.fn.validateSimpleEmail = function() {
this.hasError = ko.observable(false);
this.subscribe(value => this.hasError(value && !/^.+@.+$/.test(value)));
this.valueHasMutated();
return this;
};
ko.observable.fn.deleteAccessHelper = function() {
this.extend({ falseTimeout: 3000 }).extend({ toggleSubscribeProperty: [this, 'deleteAccess'] });
return this;