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 02:17:39 GMT
via: 1.1 varnish
x-served-by: cache-bom4722-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753064258.413446,VS0,VE999
vary: Accept-Encoding
x-fastly-request-id: 498978d42cef873b539935fc67903e5f503416b5
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: A5D3:10EE5:247F58:71A4A6:687DA342
content-encoding: gzip
accept-ranges: bytes
date: Mon, 21 Jul 2025 02:17:39 GMT
via: 1.1 varnish
x-served-by: cache-bom4732-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753064259.464097,VS0,VE245
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: 706c4bc3b9330340bae8c927627f0d30ddc15c0f
expires: Mon, 21 Jul 2025 02:22:39 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._);