1
0
mirror of synced 2025-02-03 21:59:24 +03:00

Fix TypeError

This closes https://github.com/select2/select2/issues/3160.
This commit is contained in:
Kevin Brown 2015-03-18 10:48:47 -04:00
parent 9d359c9b38
commit 1f62eb67e8
5 changed files with 5 additions and 5 deletions

View File

@ -5832,7 +5832,7 @@ S2.define('jquery.select2',[
// Hold the AMD module references on the jQuery function that was just loaded
// This allows Select2 to use the internal loader outside of this file, such
// as in the language files.
$.fn.select2.amd = S2;
jQuery.fn.select2.amd = S2;
// Return the Select2 instance for anyone who is importing it.
return select2;

File diff suppressed because one or more lines are too long

2
dist/js/select2.js vendored
View File

@ -5272,7 +5272,7 @@ S2.define('jquery.select2',[
// Hold the AMD module references on the jQuery function that was just loaded
// This allows Select2 to use the internal loader outside of this file, such
// as in the language files.
$.fn.select2.amd = S2;
jQuery.fn.select2.amd = S2;
// Return the Select2 instance for anyone who is importing it.
return select2;

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@
// Hold the AMD module references on the jQuery function that was just loaded
// This allows Select2 to use the internal loader outside of this file, such
// as in the language files.
$.fn.select2.amd = S2;
jQuery.fn.select2.amd = S2;
// Return the Select2 instance for anyone who is importing it.
return select2;