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
This:
Tagging.prototype = { tags: [], ...
Should be:
var Tagging = function(elem, options) { this.elem = elem; this.$elem = $(elem); this.options = options; this.tags = []; }
In order to allow a user to use more than one tagging block per page.
The text was updated successfully, but these errors were encountered:
I'm seeing this issue as well. Unable to have multiple instances of inputs on the same page as a result.
Sorry, something went wrong.
fix for issue sniperwolf#22, this.tags on prototype
de7512f
@MSommer MSommer/taggingJS fork solves the issue as suggested here.
Just as a heads up but the @MSommer fork doesn't have the change applied to the minified code, works great though.
38d87e9
No branches or pull requests
This:
Should be:
In order to allow a user to use more than one tagging block per page.
The text was updated successfully, but these errors were encountered: