Advertisement
RyanFarley

Untitled

Jan 22nd, 2018
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. define('Mobile/HTMobile1/ApplicationModule', [
  2.     'dojo/_base/declare',
  3.     'argos/ApplicationModule',
  4.     'Mobile/HTMobile1/Views/DashboardView'
  5. ], function (
  6.     declare,
  7.     ApplicationModule,
  8.     DashboardView
  9. ) {
  10.     return declare('Mobile.HTMobile1.ApplicationModule', ApplicationModule, {
  11.    
  12.         loadCustomizations: function () {
  13.             // CUSTOMIZATIONS HERE
  14.         },
  15.        
  16.         loadViews: function() {
  17.             this.registerView(new DashboardView());
  18.         }
  19.        
  20.     });
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement