init
This commit is contained in:
23
public/tinymce/classes/dom/Sizzle.jQuery.js
Normal file
23
public/tinymce/classes/dom/Sizzle.jQuery.js
Normal file
@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Sizzle.jQuery.js
|
||||
*
|
||||
* Copyright, Moxiecode Systems AB
|
||||
* Released under LGPL License.
|
||||
*
|
||||
* License: http://www.tinymce.com/license
|
||||
* Contributing: http://www.tinymce.com/contributing
|
||||
*/
|
||||
|
||||
/*global jQuery:true */
|
||||
|
||||
/*
|
||||
* Fake Sizzle using jQuery.
|
||||
*/
|
||||
define("tinymce/dom/Sizzle", [], function() {
|
||||
// Detect if jQuery is loaded
|
||||
if (!window.jQuery) {
|
||||
throw new Error("Load jQuery first");
|
||||
}
|
||||
|
||||
return jQuery.find;
|
||||
});
|
Reference in New Issue
Block a user