This file contains hidden or 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
/** | |
* @param sel - the selector you want to wait for | |
* @param action - the callback that will be executed when element/s matching the given selector are found, it is passed the array of found elements | |
* @param stopLooking - if true the function will stop looking for more elements after the first match | |
*/ | |
function waitForElems(sel, action, stopLooking) { | |
var tick; | |
var id = 'fke' + Math.floor(Math.random() * 12345); | |
var type = window.MutationObserver ? 'M' : 'S'; | |
var lastMutation = Date.now(); |
This file contains hidden or 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
/* | |
Theme Name: Avada Child | |
Description: Child theme for Avada theme | |
Author: ThemeFusion | |
Author URI: https://theme-fusion.com | |
Template: Avada | |
Version: 1.0.0 | |
Text Domain: Avada | |
*/ |
This file contains hidden or 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": "load-google-maps", | |
"version": "1.0.0", | |
"main": ["./load-google-maps.js"], | |
"author": "Glenn Baker & Gavin Foley", | |
"dependencies": { | |
"jquery": ">=1.5" | |
}, | |
"license": ["MIT", "GPL"], | |
"keywords": ["Google Maps", "Async"] |