Blame view

app/scripts/routes.js 517 Bytes
c87bc1f33   TRUONG   first commit: ini...
1
2
3
4
5
  define([], function(){
      'use strict';
      return {
          defaultRoutePaths: '/',
          routes: {
c87bc1f33   TRUONG   first commit: ini...
6
7
              /* add more routes */
              '/': {
c9d8b2fe3   Truong LD   update version
8
                  templateUrl: 'views/main.html?ver='+VERSION,
c87bc1f33   TRUONG   first commit: ini...
9
                  dependencies: [
5cd6d0cbc   Truong LD   update change htm...
10
11
12
13
                      'scripts/controllers/main.js',
                      'scripts/controllers/tshirtdesign.js',
                      'scripts/services/illustration.js',
                      'scripts/services/tshirt.js'
c87bc1f33   TRUONG   first commit: ini...
14
15
16
17
18
                  ]
              }
          }
      };
  });