| (function(){ | |
| 'use strict'; | |
| angular.module('app') | |
| .config(function($stateProvider){ | |
| $stateProvider | |
| .state('shows', { | |
| url: '/shows', | |
| templateUrl: 'features/shows/shows.tpl.html', | |
| controller: 'Shows' | |
| }); | |
| }); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment