Update select2.js to use String.prototype.trim instead of jQuery.trim

This commit is contained in:
Jonathan Sadowski 2021-03-05 11:25:13 -06:00
parent 8026131767
commit 6f1a1b2492
1 changed files with 2 additions and 2 deletions

View File

@ -3707,7 +3707,7 @@ S2.define('select2/data/tags',[
};
Tags.prototype.createTag = function (decorated, params) {
var term = $.trim(params.term);
var term = params.term.trim();
if (term === '') {
return null;
@ -4941,7 +4941,7 @@ S2.define('select2/defaults',[
function matcher (params, data) {
// Always return the object if there is nothing to compare
if ($.trim(params.term) === '') {
if ( params.term.trim() === '' ) {
return data;
}