1
0
mirror of synced 2024-11-26 14:56:07 +03:00
select2/src/js/jquery.shim.js

15 lines
357 B
JavaScript
Raw Normal View History

/* global jQuery:false, $:false */
define(function () {
2015-01-22 22:49:39 +03:00
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 _$;
});