From db0d3aea0191f7f4968a2045539510660984ebfb Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 16 Aug 2011 13:28:12 +0000 Subject: [PATCH] make video preview links work --- static/js/pandora/ui/videoPreview.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/static/js/pandora/ui/videoPreview.js b/static/js/pandora/ui/videoPreview.js index 24839b45..43c27fb6 100644 --- a/static/js/pandora/ui/videoPreview.js +++ b/static/js/pandora/ui/videoPreview.js @@ -21,9 +21,18 @@ pandora.ui.videoPreview = function(data) { }) .bindEvent({ click: function(event) { - pandora.URL.set( - '/' + data.id + '/timeline/' + Ox.formatDuration(event.position, 2) - ); + if (pandora.user.ui.item) { + pandora.$ui[ + pandora.user.ui.itemView == 'player' ? 'player' : 'editor' + ].options({ + position: event.position + }); + } else { + pandora.UI.set('videoPosition|' + data.id, event.position); + pandora.URL.set( + '/' + data.id + '/timeline' //'/' + Ox.formatDuration(event.position, 2) + ); + } } }); function getResolution() {