Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- define('Mobile/HTMobile1/ApplicationModule', [
- 'dojo/_base/declare',
- 'argos/ApplicationModule',
- 'Mobile/HTMobile1/Views/DashboardView'
- ], function (
- declare,
- ApplicationModule,
- DashboardView
- ) {
- return declare('Mobile.HTMobile1.ApplicationModule', ApplicationModule, {
- loadCustomizations: function () {
- // CUSTOMIZATIONS HERE
- },
- loadViews: function() {
- this.registerView(new DashboardView());
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement