You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tagging.js on line 617, there should be citation marks around the CSS selector like this: $tag = self.$elem.find( "input[value='" + text + "']" ).parent();
rather than: $tag = self.$elem.find( "input[value=" + text + "]" ).parent();
As it is now, the selector will fail finding tags e.g. containing a fullstop or an at (@).
Maybe there is even some more work to do to make it function correctly even with tags containing citation marks.
Otherwise, thank you for this great project!
The text was updated successfully, but these errors were encountered:
In tagging.js on line 617, there should be citation marks around the CSS selector like this:
$tag = self.$elem.find( "input[value='" + text + "']" ).parent();
rather than:
$tag = self.$elem.find( "input[value=" + text + "]" ).parent();
As it is now, the selector will fail finding tags e.g. containing a fullstop or an at (@).
Error messages from a simple usage example:
Maybe there is even some more work to do to make it function correctly even with tags containing citation marks.
Otherwise, thank you for this great project!
The text was updated successfully, but these errors were encountered: