/* global-animation.js =================== This file is included in inc-htmlbottom.php if animations are enabled. Please only place animations that are to be site wide in this file, otherwise please place Remember that animations are theme specific, meaning this file only effects the current theme that you are animating, and not every theme across the TemplateOTS platform. See detailed documentation here:- https://docs.google.com/document/d/1n5sWQ8SIr-zjOpTv8YnOTHJapO8WdedjDfbeo-lkqMM/edit#heading=h.lmxb59mpcpe2 For detailed documentation on how things in this theme works (not animation specific) -: https://docs.google.com/document/d/1nAW00kGPRfQl4rHOzwR2mlBwuAgOZOkhLoJxjReu3eo/edit */ (function () { /* On Document Loaded ================== Called by Jquery event handler when the document is ready (When content has been loaded) */ $( document ).ready( function() { // If the global page container exists if( $(".page-global-container").length ) { // Set the opacity of this item TweenMax.to( $(".page-global-container"), { opacity : 1, ease : Power2.easeIn }, 0.4); } }); }());