Skip to content

Commit

Permalink
Merge pull request #299 from nidgetgod/fix-replaceAll-unfinished-modify
Browse files Browse the repository at this point in the history
Remove unexpected brackets
  • Loading branch information
InsaneSkull authored Jun 17, 2019
2 parents 3cc9fee + ac8ae4a commit 5b1930c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/src/js/jquery.multipleInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@
};

var replaceAll = function (search, replace, subject) {
if (!(subject instanceof String) && typeof subject !== 'string')) {
if (!(subject instanceof String) && typeof subject !== 'string') {
console.warn('Call replaceAll for non-string value: ' + subject);
return subject;
}
Expand Down

0 comments on commit 5b1930c

Please sign in to comment.