Created
March 31, 2016 20:16
-
-
Save daniel-nelson/5ff135e4903751f5c59f831810cff6a2 to your computer and use it in GitHub Desktop.
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
Angular: | |
dashboard.module.es6 // Defines the DashboardApp | |
dashboard.controller.es6 | |
order_queue.module.es6 // Defines the OrderQueueApp | |
order_queue.controller.es6 | |
modal.directive.js // A general purpose directive for displaying modals. Modal html is loaded from templates | |
Angular Templates: | |
dashboard_order_info_modal.html // Renders order_info_details | |
order_queue_info_modal.html // Also renders order_info_details | |
order_info_details.html // Displays information about the selected order (selection happens in the controller) | |
Non-template HTML: | |
dashboard.html // Instantiates the DashboardApp with the DashboardController | |
order_queue.html // Instantiates the OrderQueueApp with the OrderQueueController | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment