blob: 880993af1a88d356b187b332b1fc83e581ea4c1f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 _$;
});
|