- email@example.com
- LinkedIn/your-name 123-456-7890
- gandalf@istari.dev
- github.com/gandalfgrey (555) 777-3019
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
/** | |
* Enqueue Block Filters. | |
*/ | |
function enqueue_my_block_filters() { | |
wp_register_script( | |
'block-style-filter', | |
plugins_url( 'block-style-filter', __FILE__ ), | |
array( 'wp-blocks', 'wp-element' ) | |
); | |
} |
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
// The element we will observe. | |
const heroImage = document.querySelector('img'); | |
// Observer options. | |
const options = { | |
root: null, | |
rootMargin: '0px', | |
threshold: 0.7, | |
}; |
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
{ | |
"name": "gm_roots_theme", | |
"version": "1.0.0", | |
"lockfileVersion": 1, | |
"requires": true, | |
"dependencies": { | |
"@gulp-sourcemaps/identity-map": { | |
"version": "1.0.2", | |
"resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz", | |
"integrity": "sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==", |