Skip to content

Instantly share code, notes, and snippets.

View ginader's full-sized avatar

Dirk Ginader ginader

View GitHub Profile
@ginader
ginader / multiline-string.js
Last active August 29, 2015 14:04
Multi line Javascript String
// 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:
@ginader
ginader / --window-width-css-var.js
Created April 20, 2017 17:56
Give CSS the exact pixel width of the viewport for situations when 100% doesn't work
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)
@ginader
ginader / LogFocus snipped
Created May 17, 2017 16:04
Save this into your Dev Tools Snippets and run when you want to follow the focus
window.addEventListener('focus',function(e){
window.console.info('focus',e.target);
},true);
@ginader
ginader / deepQuerySelectorAll.js
Created March 31, 2023 12:51 — forked from Haprog/deepQuerySelectorAll.js
A version of querySelectorAll() that also recursively looks into all shadow roots
/**
* 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) {