Blame view

app/scripts/routes.js 546 Bytes
c87bc1f33   TRUONG   first commit: ini...
1
2
3
  define([], function(){
      'use strict';
      return {
21f9ba316   DANG   commit route
4
          defaultRoutePaths: '/1/place_1',
c87bc1f33   TRUONG   first commit: ini...
5
          routes: {
4d7dab16f   DANG   Clean code
6
              '/:tShirt/:place': {
19a541686   TRUONG   restruct + fix style
7
                  templateUrl: 'views/main.html',
c87bc1f33   TRUONG   first commit: ini...
8
                  dependencies: [
5cd6d0cbc   Truong LD   update change htm...
9
10
11
                      'scripts/controllers/main.js',
                      'scripts/controllers/tshirtdesign.js',
                      'scripts/services/illustration.js',
faf1542f8   TRUONG   fix lazy border w...
12
                      'scripts/services/favorite.js',
5cd6d0cbc   Truong LD   update change htm...
13
                      'scripts/services/tshirt.js'
c87bc1f33   TRUONG   first commit: ini...
14
                  ]
e872619e5   Dang YoungWorld   delete comment
15
              },
c87bc1f33   TRUONG   first commit: ini...
16
17
18
          }
      };
  });