This commit is contained in:
Ross
2021-10-20 22:45:53 +01:00
parent cf2ffd86af
commit a9c4f54cd4
514 changed files with 115006 additions and 0 deletions
@@ -0,0 +1,14 @@
/* global jQuery:false, $:false */
define(function () {
var _$ = jQuery || $;
if (_$ == null && console && console.error) {
console.error(
'Select2: An instance of jQuery or a jQuery-compatible library was not ' +
'found. Make sure that you are including jQuery before Select2 on your ' +
'web page.'
);
}
return _$;
});