allow jumping playback

This commit is contained in:
Colin Frei 2013-08-21 20:06:10 +02:00
parent d6b021bfaf
commit 32fbdee05f
4 changed files with 13 additions and 3 deletions

View file

@ -204,6 +204,10 @@ function TopBarCtrl($scope, player, pageSwitcher)
$scope.showBackLink = function() {
return !!pageSwitcher.backPage;
};
$scope.jumpAudio = function(distance) {
player.jumpAudio(distance);
};
}
function InfoCtrl(pageSwitcher)