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
/** | |
* Unwrap element | |
*/ | |
function unwrap(wrapper) { | |
// place childNodes in document fragment | |
var docFrag = document.createDocumentFragment(); | |
while (wrapper.firstChild) { | |
var child = wrapper.removeChild(wrapper.firstChild); | |
docFrag.appendChild(child); | |
} |
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
function getAncestorByAttribute(elem, attribute) { | |
if (elem.parentElement === null) { | |
return false; | |
} else if (elem.hasAttribute(attribute)) { | |
return elem; | |
} else { | |
return getAncestorByAttribute(elem.parentElement, attribute); | |
} | |
} |
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
function copyInputValueToClipboard(input) { | |
input.select(); | |
document.execCommand("copy"); | |
console.log(`${input.value} copied to clipboard!`) | |
} |
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
/** | |
* Check if Element is in View | |
*/ | |
function elementIsVisible(el, offset) { | |
const rect = el.getBoundingClientRect(); | |
return ( | |
rect.top < window.innerHeight && rect.bottom - offset >= 0 | |
); | |
} |
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
/remind #channel “Time to post your Daily Update | |
Y: What you do yesterday? | |
T: What are you working on today? | |
B: Do you have any blockers?” at 10AM every weekday. |
OlderNewer