CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/Ensighten/jqueryp/master/dist/jqueryp.chainer.js
accept-ranges: bytes
age: 0
date: Mon, 21 Jul 2025 07:56:05 GMT
via: 1.1 varnish
x-served-by: cache-bom4741-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753084564.723745,VS0,VE1487
vary: Accept-Encoding
x-fastly-request-id: 838f4e8e16aac1c8ea3529b3f38016ea4a053c65
content-length: 0
HTTP/2 200
cache-control: max-age=300
content-security-policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type: text/plain; charset=utf-8
etag: W/"b209ceba71c9127eb0011b8a177e4ab80f2d5ff17a76183fe4ef56c378e5a0e8"
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-frame-options: deny
x-xss-protection: 1; mode=block
x-github-request-id: 1084:1E73E8:4C71C:8EDCC:687DF295
content-encoding: gzip
accept-ranges: bytes
date: Mon, 21 Jul 2025 07:56:05 GMT
via: 1.1 varnish
x-served-by: cache-bom4720-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753084565.269001,VS0,VE458
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: 40114f1c3544b6022c8beb86688ac1a28da414df
expires: Mon, 21 Jul 2025 08:01:05 GMT
source-age: 0
content-length: 489
/*! jqueryp - v1.0.2 - 2012-12-07
* https://github.com/Ensighten/jqueryp
* Copyright (c) 2012 Ensighten; Licensed MIT */
define(['jquery'], function ($) {
return {
/**
* Plugin load function (paraphrased from https://requirejs.org/docs/plugins.html#apiload)
* @param {String} name Resources following ! (e.g 'world!three' in 'hello!world!three')
* @param {Function} req Require to use to load other modules
* @param {Function} load Callback to run with the completed item
* @param {Object} config Configuration object used by requirejs
*/
'load': function (name, req, load, config) {
// Fallback name
name = name || '';
// Break up the plugins by !
var plugins = name.split(/!/g);
// Require each of the plugins
req(plugins, function () {
// Callback with jQuery
load($);
});
},
'jquery': $
};
});