Sha256: 8c518df458c8b33a4e2ab9375c7a1480ab19191fa0b330a27725ed985665c74a
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
'use strict'; angular.module('simplePvr', ['ngRoute', 'ngCookies', 'simplePvrServices', 'simplePvrFilters', 'simplePvrDirectives', 'http-auth-interceptor']). config(function($routeProvider, $locationProvider, $httpProvider) { $httpProvider.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; $locationProvider.html5Mode(true).hashPrefix(''); $routeProvider. when('/schedules', { templateUrl: '/app/partials/schedules.html', controller: SchedulesCtrl }). when('/schedules/:scheduleId', { templateUrl: '/app/partials/schedule.html', controller: ScheduleCtrl }). when('/channels', { templateUrl: '/app/partials/channels.html', controller: ChannelsCtrl }). when('/channels/:channelId/programmeListings/:date', { templateUrl: '/app/partials/programmeListing.html', controller: ProgrammeListingCtrl }). when('/programmes/:programmeId', { templateUrl: '/app/partials/programme.html', controller: ProgrammeCtrl }). when('/shows', { templateUrl: '/app/partials/shows.html', controller: ShowsCtrl }). when('/shows/:showId', { templateUrl: '/app/partials/show.html', controller: ShowCtrl }). when('/search', { templateUrl: '/app/partials/search.html', controller: SearchCtrl }). when('/status', { templateUrl: '/app/partials/status.html', controller: StatusCtrl }). when('/about', { templateUrl: '/app/partials/about.html' }). otherwise({ redirectTo: '/schedules' }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_pvr-1.1.0 | public/js/app.js |