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
/** | |
* Augments all methods on a given object to log a message to the console when called. | |
* Useful for understanding how objects are used during an application's lifecycle. | |
* | |
* @param {string} baseName Logged as the indentifer before called method names. | |
* @param {object} target The object with methods that should be monitored for calls. | |
* | |
* @return {object} Returns the modified target object. | |
*/ | |
function logMethodCalls(baseName, target) { |
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
html { | |
box-sizing: border-box; | |
cursor: default; | |
font-family: system-ui, sans-serif; | |
text-size-adjust: none; | |
-webkit-tap-highlight-color: transparent; | |
} | |
*, | |
*::before, |
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
/////////////////////////////////////////////////////////////////////////// | |
// // | |
// MOVED PERMANENTLY TO https://github.com/MilllerTime/react-pointable // | |
// // | |
/////////////////////////////////////////////////////////////////////////// | |
// Allows listening for pointer events using PEP for browsers that don't support them. | |
// This component also adds support for dynamic event addition/removal that React does well, | |
// even though React doesn't support any pointer events yet. |