Skip to content

Commit

Permalink
4.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Yair Even Or authored and Yair Even Or committed Feb 13, 2022
1 parent df9e205 commit 59bd357
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions dist/jQuery.tagify.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/react.tagify.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/tagify.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Tagify (v 4.9.6) - tags input component
* Tagify (v 4.9.7) - tags input component
* By Yair Even-Or
* Don't sell this code. (c)
* https://github.com/yairEO/tagify
Expand Down Expand Up @@ -2257,7 +2257,7 @@ Tagify.prototype = {
},

/**
* if the original input had any values, add them as tags
* if the original input has any values, add them as tags
*/
loadOriginalValues(value) {
var lastChild,
Expand All @@ -2277,7 +2277,7 @@ Tagify.prototype = {

if (value) {
if (_s.mode == 'mix') {
this.parseMixTags(value.trim());
this.parseMixTags(this.trim(value));
lastChild = this.DOM.input.lastChild;
if (!lastChild || lastChild.tagName != 'BR') this.DOM.input.insertAdjacentHTML('beforeend', '<br>');
} else {
Expand Down
6 changes: 3 additions & 3 deletions dist/tagify.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Tagify (v 4.9.6) - tags input component
* Tagify (v 4.9.7) - tags input component
* By Yair Even-Or
* Don't sell this code. (c)
* https://github.com/yairEO/tagify
Expand Down Expand Up @@ -2263,7 +2263,7 @@
},

/**
* if the original input had any values, add them as tags
* if the original input has any values, add them as tags
*/
loadOriginalValues(value) {
var lastChild,
Expand All @@ -2283,7 +2283,7 @@

if (value) {
if (_s.mode == 'mix') {
this.parseMixTags(value.trim());
this.parseMixTags(this.trim(value));
lastChild = this.DOM.input.lastChild;
if (!lastChild || lastChild.tagName != 'BR') this.DOM.input.insertAdjacentHTML('beforeend', '<br>');
} else {
Expand Down
4 changes: 2 additions & 2 deletions dist/tagify.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tagify.polyfills.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Tagify (v 4.9.6) - tags input component
* Tagify (v 4.9.7) - tags input component
* By Yair Even-Or
* Don't sell this code. (c)
* https://github.com/yairEO/tagify
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yaireo/tagify",
"version": "4.9.6",
"version": "4.9.7",
"homepage": "https://github.com/yairEO/tagify",
"description": "lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]",
"keywords": [
Expand Down

0 comments on commit 59bd357

Please sign in to comment.