We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wondering if there is a way to add a placeholder text like an input element.
Thanks in advance
The text was updated successfully, but these errors were encountered:
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" ] )
.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
Sorry, something went wrong.
No branches or pull requests
Wondering if there is a way to add a placeholder text like an input element.
Thanks in advance
The text was updated successfully, but these errors were encountered: