Sha256: 5803bfc8713bb53405a3e646ca7bf0dcbe6422cc9102ec10f4414ecd5a1e2a61

Contents?: true

Size: 397 Bytes

Versions: 11

Compression:

Stored size: 397 Bytes

Contents

'use strict';

angular.module('entangledTest', [
  'ngRoute',
  'entangled'
])

.config(function($routeProvider) {
  $routeProvider
    .when('/lists', {
      templateUrl: 'views/lists/index.html',
      controller: 'ListsCtrl'
    })
    .when('/lists/:id', {
      templateUrl: 'views/lists/show.html',
      controller: 'ListCtrl'
    })
    .otherwise({
      redirectTo: '/lists'
    });
})

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
entangled-1.5.0 spec/dummy/public/app/app.js
entangled-1.4.1 spec/dummy/public/app/app.js
entangled-1.4.0 spec/dummy/public/app/app.js
entangled-1.2.0 spec/dummy/public/app/app.js
entangled-1.1.1 spec/dummy/public/app/app.js
entangled-1.1.0 spec/dummy/public/app/app.js
entangled-1.0.0 spec/dummy/public/app/app.js
entangled-0.0.26 spec/dummy/public/app/app.js
entangled-0.0.25 spec/dummy/public/app/app.js
entangled-0.0.24 spec/dummy/public/app/app.js
entangled-0.0.23 spec/dummy/public/app/app.js