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