silverstripe-framework/javascript/dist/jQuery.js
Damian Mooyman f20ad434ce API Update TinyMCE to 4.x
API Allow HtmlEditorField to be individually configured
BUG Fix incorrect change detection
BUG Fix missing i18n files
2016-02-23 10:10:02 +13:00

21 lines
540 B
JavaScript

(function (global, factory) {
if (typeof define === "function" && define.amd) {
define('ss.jQuery', ['exports'], factory);
} else if (typeof exports !== "undefined") {
factory(exports);
} else {
var mod = {
exports: {}
};
factory(mod.exports);
global.ssJQuery = mod.exports;
}
})(this, function (exports) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var jQuery = typeof window.jQuery !== 'undefined' ? window.jQuery : null;
exports.default = jQuery;
});