From 7424f55fd38abe5f48022246c28afbb917184538 Mon Sep 17 00:00:00 2001 From: Radu-Sebastian Amarie Date: Tue, 20 Sep 2016 10:52:41 +0300 Subject: [PATCH] Update: Removed isTagAllowed from addTags since in combination with filter plugin, manual tags will not be able to added again. Fix for #9 --- src/js/textext.plugin.tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/textext.plugin.tags.js b/src/js/textext.plugin.tags.js index 26de5bc..90486bf 100644 --- a/src/js/textext.plugin.tags.js +++ b/src/js/textext.plugin.tags.js @@ -597,7 +597,7 @@ { tag = tags[i]; - if(tag && self.isTagAllowed(tag)) + if(tag) container.append(self.renderTag(tag)); }