Last active
March 22, 2016 11:34
-
-
Save balanza/79aa8918d7fcf18e4608 to your computer and use it in GitHub Desktop.
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
//navigation.js - centralized app navigation methods | |
exports.openHomePage = function(){ /* code for opening the Home page */ }; | |
exports.openProfilePage = function(){ /* code for opening the Profile page */ }; | |
exports.openDashboardPage = function(){ /* code for opening Dashboard page */ }; | |
exports.openInsightsPage = function(){ /* code for opening Insights page */ }; | |
exports.openBillingPage = function(){ /* code for opening the Billing page */ }; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment