Check placeholder value when setting dirty state.

master
Jonathan Garbee 2017-06-27 17:03:58 -04:00 committed by GitHub
parent df6196d581
commit b84882629c
1 changed files with 5 additions and 1 deletions

View File

@ -175,7 +175,11 @@
* @public
*/
MaterialTextfield.prototype.checkDirty = function() {
if ((this.input_.value && this.input_.value.length > 0) || this.input_.placeholder) {
var placeholder = this.input_.placeholder;
if (
(this.input_.value && this.input_.value.length > 0) ||
(placeholder !== undefined || placeholder.trim() !== "")
) {
this.element_.classList.add(this.CssClasses_.IS_DIRTY);
} else {
this.element_.classList.remove(this.CssClasses_.IS_DIRTY);