CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/nbubna/trigger/master/src/jquery.trigger.js
accept-ranges: bytes
age: 0
date: Mon, 21 Jul 2025 15:47:24 GMT
via: 1.1 varnish
x-served-by: cache-bom4751-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753112843.000993,VS0,VE1202
vary: Accept-Encoding
x-fastly-request-id: c405a4ed1b514a8b01876274113d7349956bf838
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/"ca3d1ce38cfb1f43f9c5be73b86fc3f482d164af5fd3c8f64b25cae588b8a843"
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: F139:67581:F210:208D5:687E610C
content-encoding: gzip
accept-ranges: bytes
date: Mon, 21 Jul 2025 15:47:24 GMT
via: 1.1 varnish
x-served-by: cache-bom4745-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753112844.255482,VS0,VE265
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: d658db006dd324edeb34859e0a3a8f171af1298e
expires: Mon, 21 Jul 2025 15:52:24 GMT
source-age: 0
content-length: 317
/**
* Copyright (c) 2013, ESHA Research
* Dual licensed under the MIT and GPL licenses:
* https://www.opensource.org/licenses/mit-license.php
* https://www.gnu.org/licenses/gpl.html
*/
;(function($, trigger, _) {
_.fn = $.fn.trigger;
_.triggerRE = / |\#|\[|\:/;
$.fn.trigger = function(type) {
return typeof type === "string" && _.triggerRE.test(type) ?
this.each(function(){ trigger(this, type); }) :
_.fn.apply(this, arguments);
};
})(jQuery, trigger, trigger._);