Open lucianobosco opened 8 years ago
Just thought I'd drop a comment about monkey patching this: Lines 408
// Create the type_zone input using custom class and contenteditable attribute
self.$type_zone = $( document.createElement( "input" ) )
.addClass( self.config[ "type-zone-class" ] )
.attr( "contenteditable", true )
.attr("placeholder", "New Tag");
I imagine you could do something like:
.attr("placeholder", self.config[ "type-zone-placeholder" ] )
If I find that i need customized placeholders in my project and I end up doing this Ill paste the results/pull request
Wondering if there is a way to add a placeholder text like an input element.
Thanks in advance