You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 line
371 B

  1. /**
  2. * Created by Benny on 29.03.2016.
  3. */
  4. var app = app || {};
  5. app.ctrl = app.ctrl|| {};
  6. app.ctrl.Dashboard = {
  7. index : function( params ) {
  8. var page = app.core.View.createPage({
  9. title : 'Welcome to TBuddy Administration Panel',
  10. content : 'Hello World'
  11. });
  12. app.core.View.showPage( page );
  13. }
  14. };