jquery.shim.js 357 B

1234567891011121314
  1. /* global jQuery:false, $:false */
  2. define(function () {
  3. var _$ = jQuery || $;
  4. if (_$ == null && console && console.error) {
  5. console.error(
  6. 'Select2: An instance of jQuery or a jQuery-compatible library was not ' +
  7. 'found. Make sure that you are including jQuery before Select2 on your ' +
  8. 'web page.'
  9. );
  10. }
  11. return _$;
  12. });