CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/Ensighten/jqueryp/master/dist/jqueryp.chainer.js
accept-ranges: bytes
age: 0
date: Wed, 23 Jul 2025 17:42:35 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210044-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753292555.648384,VS0,VE958
vary: Accept-Encoding
x-fastly-request-id: f2c4cee381a5f2e4f85d78ce810ef60e002bbdf1
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: 69DD:3B900B:19A69B:398813:68811F0B
content-encoding: gzip
accept-ranges: bytes
date: Wed, 23 Jul 2025 17:42:35 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210078-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753292556.656027,VS0,VE272
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: f549fbe3b237ced7947286ee3409e1b7757b7690
expires: Wed, 23 Jul 2025 17:47:35 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': $
};
});