3 Commits
Author SHA1 Message Date
Sebastian Motraghi 240f4274a0 bump to version 1.2.5 2011-06-02 09:37:48 +01:00
Sebastian Motraghi 14a01fa89f minified punytan's changes. 2011-06-02 09:32:54 +01:00
punytan 9b584de09a fix the problem around unsafe chars 2011-06-01 20:23:46 +09:00
3 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
jQuery Tags Input Plugin 1.2.4
jQuery Tags Input Plugin 1.2.5
Copyright (c) 2011 XOXCO, Inc
+14 -5
View File
@@ -1,8 +1,8 @@
/*
jQuery Tags Input Plugin 1.2.4
jQuery Tags Input Plugin 1.2.5
Copyright (c) 2010 XOXCO, Inc
Copyright (c) 2011 XOXCO, Inc
Documentation for this plugin lives here:
http://xoxco.com/clickable/jquery-tags-input
@@ -38,8 +38,17 @@
}
if (value !='' && skipTag != true) {
$('<span class="tag">'+value + '&nbsp;&nbsp;<a href="#" title="Remove tag" onclick="return $(\'#'+id + '\').removeTag(\'' + escape(value) + '\');">x</a></span>').insertBefore('#'+id+'_addTag');
$('<span>').addClass('tag').append(
$('<span>').text(value).append('&nbsp;&nbsp;'),
$('<a>', {
href : '#',
title : 'Removing tag',
text : 'x'
}).click(function () {
return $('#' + id).removeTag(escape(value));
})
).insertBefore('#' + id + '_addTag');
tagslist.push(value);
$('#'+id+'_tag').val('');
@@ -252,4 +261,4 @@
}
};
})(jQuery);
})(jQuery);
+1 -1
View File
File diff suppressed because one or more lines are too long