1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-01-01 12:22:20 +00:00
nk20/static/vendor/select2/src/js/jquery.shim.js
Pierre-antoine Comby 70c09da9f8 add static files
2020-02-25 22:15:46 +01:00

15 lines
357 B
JavaScript

/* 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 _$;
});