mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 02:42:30 +02:00
only return "" for blur-value, if browser does not support html5 placeholder
This commit is contained in:
@ -99,8 +99,12 @@ var et2_textbox = /** @class */ (function (_super) {
|
||||
_super.prototype.destroy.call(this);
|
||||
};
|
||||
et2_textbox.prototype.getValue = function () {
|
||||
if (this.options && this.options.blur && this.input.val() == this.options.blur)
|
||||
// only return "" for blur-value, if browser does not support html5 placeholder
|
||||
if (this.options && this.options.blur &&
|
||||
!this.input[0].placeholder &&
|
||||
this.input.val() == this.options.blur) {
|
||||
return "";
|
||||
}
|
||||
return _super.prototype.getValue.call(this);
|
||||
};
|
||||
/**
|
||||
|
Reference in New Issue
Block a user