Created
November 10, 2017 11:44
-
-
Save anonymous/da39f1cc0a49374a644d439438cf9e22 to your computer and use it in GitHub Desktop.
Sage 8.5.3, AOS 2.2.0
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
/* ======================================================================== | |
* DOM-based Routing | |
* Based on http://goo.gl/EUTi53 by Paul Irish | |
* | |
* Only fires on body classes that match. If a body class contains a dash, | |
* replace the dash with an underscore when adding it to the object below. | |
* | |
* .noConflict() | |
* The routing is enclosed within an anonymous function so that you can | |
* always reference jQuery with $, even when in .noConflict() mode. | |
* ======================================================================== */ | |
(function($) { | |
AOS.init(); | |
// Use this variable to set up the common and page specific functions. If you | |
// rename this variable, you will also need to rename the namespace below. | |
var Sage = { | |
// All pages | |
'common': { | |
init: function() { | |
// JavaScript to be fired on all pages | |
}, | |
finalize: function() { | |
// JavaScript to be fired on all pages, after page specific JS is fired | |
} | |
}, | |
// Home page | |
'home': { | |
init: function() { | |
// JavaScript to be fired on the home page | |
}, | |
finalize: function() { | |
// JavaScript to be fired on the home page, after the init JS | |
} | |
}, | |
// About us page, note the change from about-us to about_us. | |
'about_us': { | |
init: function() { | |
// JavaScript to be fired on the about us page | |
} | |
} | |
}; | |
// The routing fires all common scripts, followed by the page specific scripts. | |
// Add additional events for more control over timing e.g. a finalize event | |
var UTIL = { | |
fire: function(func, funcname, args) { | |
var fire; | |
var namespace = Sage; | |
funcname = (funcname === undefined) ? 'init' : funcname; | |
fire = func !== ''; | |
fire = fire && namespace[func]; | |
fire = fire && typeof namespace[func][funcname] === 'function'; | |
if (fire) { | |
namespace[func][funcname](args); | |
} | |
}, | |
loadEvents: function() { | |
// Fire common init JS | |
UTIL.fire('common'); | |
// Fire page-specific init JS, and then finalize JS | |
$.each(document.body.className.replace(/-/g, '_').split(/\s+/), function(i, classnm) { | |
UTIL.fire(classnm); | |
UTIL.fire(classnm, 'finalize'); | |
}); | |
// Fire common finalize JS | |
UTIL.fire('common', 'finalize'); | |
} | |
}; | |
// Load Events | |
$(document).ready(UTIL.loadEvents); | |
})(jQuery); // Fully reference jQuery after this point. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment