Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tagging.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@

// The pressed key
//pressed_key = e.which;
pressed_key = e.key;
pressed_key = e.key;
//console.log( pressed_key );

// For in loop to look to Remove Keys
Expand Down Expand Up @@ -614,7 +614,7 @@
text = $tag;

// Retrieving the $_obj of the tag
$tag = self.$elem.find( "input[value=" + text + "]" ).parent();
$tag = self.$elem.find( "input[value=\"" + text + "\"]" ).parent();

// If nothing is found, return an error
if ( ! $tag.length ) {
Expand Down