Skip to content

Commit

Permalink
local changes
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Sep 9, 2014
1 parent 1af485d commit a4fee4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/app/recordings/recentRecordings/recentRecordings.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,26 @@ angular.module("bawApp.recordings.recentRecordings", [])
$scope.recentRecordings = [
{
siteId: 1000,
duration: 123456,
durationSeconds: 123456,
uploaded: new Date(),
id: 1234
},
{
siteId: 1000,
duration: 123456,
durationSeconds: 123456,
uploaded: new Date(),
id: 1234
},
{
siteId: 1000,
duration: 123456,
durationSeconds: 123456,
uploaded: new Date(),
id: 1234
}
];

audioRecordingsFormat({data:$scope.recentRecordings});

function audioRecordingsFormat(wrapper) {
$scope.recentRecordings = wrapper.data;
// format return objects for display
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1>Recent Audio Recordings</h1>
<a ng-href="{{r.listenLink}}" class="btn btn-primary btn-small">
<span class="glyphicon glyphicon-play"></span> Play
</a>
<a ng-href="" class="btn btn-info btn-small" target="_self">
<a ng-href="" class="btn btn-default btn-small" target="_self">
<span class="glyphicon glyphicon-map-marker"></span> Site
</a>
</td>
Expand Down

0 comments on commit a4fee4c

Please sign in to comment.