List of All Footprints Play School Locations
var DOMTokenListSupports = function(tokenList, token) {
if (!tokenList || !tokenList.supports) {
return;
}
try {
return tokenList.supports(token);
} catch (e) {
if (e instanceof TypeError) {
console.log("The DOMTokenList doesn't have a supported tokens list");
} else {
console.error("That shouldn't have happened");
}
}
};
var linkSupportsPreload = DOMTokenListSupports(document.createElement("link").relList, "preload");
if (!linkSupportsPreload) {
// Dynamically load the things that relied on preload.
}
//add simple support for background images:
document.addEventListener( 'lazybeforeunveil', function ( e ) {
var bg = e.target.getAttribute( 'data-bgset' );
if ( bg ) {
e.target.style.backgroundImage = 'url(' + bg + ')';
}
} );
-->