This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var RealXMLHttpRequest = window.XMLHttpRequest; | |
window.XMLHttpRequest = function(){ | |
var asynchrony = new RealXMLHttpRequest(); | |
var realOpen = asynchrony.open; | |
// steal the OPEN method | Has to be open to send header | |
asynchrony.open = function(method, url){ | |
realOpen.apply(asynchrony, arguments); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {fetch: origFetch} = window; | |
window.fetch = async (...args) => { | |
console.log("fetch called with args:", args); | |
const response = await origFetch(...args); | |
/* work with the cloned response in a separate promise | |
chain -- could use the same chain with `await`. */ | |
response | |
.clone() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios' | |
let mockingEnabled = false | |
const mocks = {} | |
export function addMock(url, data) { | |
mocks[url] = data | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This snippet will log a url for each obs, so that you can eaisly find an OBS with event data | |
console.clear() | |
var aObs = document.querySelector( 'DIV#app' ).__vue__.$store.state.obsSys.obsList | |
var aHref = document.location.href.split("/") | |
aHref = aHref.slice(0,3).join("/") | |
var aTD = [ ... document.querySelectorAll("#app > div main tbody tr td:nth-child(1)")] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- Display a 10 second countdown then client redirect to home page --> | |
<html> | |
<head> | |
<title>Expired Redirect</title> | |
</head> | |
<body> | |
<style> | |
.exp--p { | |
font-family: sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
++++++++[>+>++>+++>++++>+++++>++++++>+++++++>++++++++>+++++++++>++++++++++>+++++++++++>++++++++++++>+++++++++++++>++++++++++++++>+++++++++++++++>++++++++++++++++<<<<<<<<<<<<<<<<-]>>>>>>>>>>>>>>>-.+<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>-.+<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>-.+<<<<<<<<<<<<<<<>>>>>>--.++<<<<<<>>>>>>>>>>>>>>>----.++++<<<<<<<<<<<<<<<>>>>>>>>>>>>>.<<<<<<<<<<<<<>>>>>>>>>>>>>---.+++<<<<<<<<<<<<<>>>>>>>>>>+++.---<<<<<<<<<<>>>>>>>>>>>>+++.---<<<<<<<<<<<<>>>>>>>>>>>>>>-.+<<<<<<<<<<<<<<>>>>>>>>>>>>>>>----.++++<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>----.++++<<<<<<<<<<<<<<<>>>>>>>>>+++.---<<<<<<<<<>>>>>>>>>>>>>>++.--<<<<<<<<<<<<<<>>>>>>>>>>>>+.-<<<<<<<<<<<<>>>>>>>>>>>>>>>---.+++<<<<<<<<<<<<<<<>>>>>>>>>>>>>>+++.---<<<<<<<<<<<<<<>>>>>>>>>>>>>---.+++<<<<<<<<<<<<<>>>>>>--.++<<<<<<>>>>>>>>>>>>+++.---<<<<<<<<<<<<>>>>>>>>>>>>>>-.+<<<<<<<<<<<<<<>>>>>>>>>>>>>>---.+++<<<<<<<<<<<<<<. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dive into DOM to access Vuex array from mixin | |
export function getFeatureDOM(feature) { | |
// Return Feature Flag if it exists for current user | |
const features = document.querySelector('DIV#app').__vue__.$store.state.auth | |
.currentUser.activeFeatures | |
return features ? features.filter((fe) => fe === feature)[0] : null | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ltd_auto_image | |
// SCK 20160503 | Gulp script QA Product AND Static images (55k) | |
// Notes: NODE 5.10.0 | GULP 3.9.x | |
//. 🌑🌒🌓🌔🌕🌖🌗🌘🌑 | |
var del = require('del'), | |
vinylPaths = require('vinyl-paths'), | |
gulp = require("gulp"), | |
debug = require("gulp-debug"), | |
imagemin = require("gulp-imagemin"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var doc = new jsPDF(); | |
function saveDiv(id, title) { | |
doc.fromHTML(`<html><head><title>${title}</title></head><body>` + document.getElementById(id).innerHTML + `</body></html>`); | |
doc.save(title + '.pdf'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change display attributes if the page is being navigated via kb | |
// I think this was an IEFE back in the day | |
// Useage: | |
/* | |
body:not([data-is-kb]) .h-vs__hidden, | |
body[data-is-kb="false"] .h-vs__hidden{ visibility: hidden; } | |
*/ | |
"isKeyb": function( _bMode ){ // User navigation mode state | |
if( typeof _bMode !== "undefined" ){ |