Added support for placeholder attribute in addition to data-placeholder
This commit is contained in:
parent
5f00dd1cfd
commit
945249f46a
@ -756,9 +756,7 @@
|
||||
},
|
||||
|
||||
getPlaceholder: function () {
|
||||
var placeholder = this.opts.element.data("placeholder");
|
||||
if (placeholder !== undefined) return placeholder;
|
||||
return this.opts.placeholder;
|
||||
return this.opts.element.attr("placeholder") || this.opts.element.data("placeholder") || this.opts.placeholder;
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user