Sizzle.jQuery.js 428 B

1234567891011121314151617181920212223
  1. /**
  2. * Sizzle.jQuery.js
  3. *
  4. * Copyright, Moxiecode Systems AB
  5. * Released under LGPL License.
  6. *
  7. * License: http://www.tinymce.com/license
  8. * Contributing: http://www.tinymce.com/contributing
  9. */
  10. /*global jQuery:true */
  11. /*
  12. * Fake Sizzle using jQuery.
  13. */
  14. define("tinymce/dom/Sizzle", [], function() {
  15. // Detect if jQuery is loaded
  16. if (!window.jQuery) {
  17. throw new Error("Load jQuery first");
  18. }
  19. return jQuery.find;
  20. });