This file contains 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
// found here: https://github.com/isaacs/node-tap/blob/master/bin/tap.js#L65 | |
var multi = function(){/* | |
Usage: | |
tap <options> <files> | |
Run the files as tap tests, parse the output, and report the results | |
Options: |
This file contains 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 updateWindowWidthVar = function(){ | |
// console.log('Resized finished.', window.innerWidth); | |
document.documentElement.style.setProperty( '--window-width', window.innerWidth + 'px' ); | |
}; | |
updateWindowWidthVar(); | |
window.onresize = updateWindowWidthVar; | |
// window.onresize = _.debounce(updateWindowWidthVar, 150); // debounced version (only fires once when resize is done) to not impact performance of app (needs lodash) | |
This file contains 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
window.addEventListener('focus',function(e){ | |
window.console.info('focus',e.target); | |
},true); |
This file contains 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
/** | |
* A version of querySelectorAll() that also recursively looks into all shadow roots. | |
* @param selector Selector | |
* @param root (Optional) Scope of the query (Element or Document). Defaults to the document. | |
* @returns | |
*/ | |
function deepQuerySelectorAll(selector, root) { | |
root = root || document; | |
const results = Array.from(root.querySelectorAll(selector)); | |
const pushNestedResults = function (root) { |
OlderNewer