Merge pull request #56 from ProLoser/master
Added support for [placeholder] attribute
This commit is contained in:
commit
a1457fa491
1 changed files with 1 additions and 3 deletions
|
@ -758,9 +758,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…
Add table
Reference in a new issue