Skip to content

Commit

Permalink
Library page is now full width liquid
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil committed Sep 11, 2014
1 parent d92b5b1 commit 00c40fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ var app = angular.module('baw',
when('/experiments/:experiment',
{templateUrl: '/assets/experiment_base.html', controller: 'ExperimentsCtrl'}).

when('/library', {templateUrl: paths.site.files.library.list, controller: 'AnnotationLibraryCtrl', title: 'Annotation Library' }).
when('/library', {templateUrl: paths.site.files.library.list, controller: 'AnnotationLibraryCtrl', title: 'Annotation Library' , fullWidth: true}).
when('/library/:recordingId', {
redirectTo: function (routeParams, path, search) { return "/library?audioRecordingId="+routeParams.recordingId;},
templateUrl: paths.site.files.library.list,
title: ":recordingId" }).
title: ":recordingId" , fullWidth: true}).
when('/library/:recordingId/audio_events', {
redirectTo: function (routeParams, path, search) { return "/library?audioRecordingId="+routeParams.recordingId;},
title: 'Audio Events' }).
Expand Down

0 comments on commit 00c40fd

Please sign in to comment.