2016-01-11 14:25:30 +13:00
|
|
|
(function (global, factory) {
|
|
|
|
if (typeof define === "function" && define.amd) {
|
2016-03-07 16:13:55 +13:00
|
|
|
define('ss.jQuery', ['module'], factory);
|
2016-01-11 14:25:30 +13:00
|
|
|
} else if (typeof exports !== "undefined") {
|
2016-03-07 16:13:55 +13:00
|
|
|
factory(module);
|
2016-01-11 14:25:30 +13:00
|
|
|
} else {
|
|
|
|
var mod = {
|
|
|
|
exports: {}
|
|
|
|
};
|
2016-03-07 16:13:55 +13:00
|
|
|
factory(mod);
|
2016-01-11 14:25:30 +13:00
|
|
|
global.ssJQuery = mod.exports;
|
|
|
|
}
|
2016-03-07 16:13:55 +13:00
|
|
|
})(this, function (module) {
|
2016-02-12 16:00:15 +13:00
|
|
|
'use strict';
|
|
|
|
|
2016-01-11 14:25:30 +13:00
|
|
|
var jQuery = typeof window.jQuery !== 'undefined' ? window.jQuery : null;
|
2016-03-04 16:40:54 +13:00
|
|
|
|
2016-03-07 16:13:55 +13:00
|
|
|
module.exports = jQuery;
|
2016-01-11 14:25:30 +13:00
|
|
|
});
|