From ffe03670ba285240c964181bb467cd9fe82aa33f Mon Sep 17 00:00:00 2001 From: Willem Van Bockstal Date: Thu, 10 Mar 2016 14:00:13 +0100 Subject: [PATCH] =?UTF-8?q?Change=20the=20delete=20link=20to=20a=20multipl?= =?UTF-8?q?ication=20sign=20'=C3=97'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Small detail: the '×' gives a cleaner look as delete character than a standard 'x'. --- src/jquery.tagsinput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.tagsinput.js b/src/jquery.tagsinput.js index b6c75e4..29faad6 100644 --- a/src/jquery.tagsinput.js +++ b/src/jquery.tagsinput.js @@ -101,7 +101,7 @@ $('', { href : '#', title : 'Removing tag', - text : 'x' + text : '×' }).click(function () { return $('#' + id).removeTag(escape(value)); })