Skip to content

Commit

Permalink
fix(listen) Fixes #179 - Regression (typo) for navigation date
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Feb 24, 2015
1 parent 098c6db commit 96c6267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/listen/listen.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ angular.module('bawApp.listen', ['decipher.tags', 'ui.bootstrap.typeahead'])
return undefined;
}

return moment($scope.model.media.recordedDatep).add($scope.jumpToMinute, 'm').format("YYYY-MMM-DD, HH:mm:ss");
return moment($scope.model.media.recordedDate).add($scope.jumpToMinute, 'm').format("YYYY-MMM-DD, HH:mm:ss");
};


Expand Down

0 comments on commit 96c6267

Please sign in to comment.