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