2015-02-14 06:49:54 +03:00
|
|
|
/* global jQuery:false, $:false */
|
2014-08-27 02:01:42 +04:00
|
|
|
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 _$;
|
2014-09-21 23:44:30 +04:00
|
|
|
});
|