From b82d232d0f64b86f7e577460d9f62e0d27800a95 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 29 Oct 2011 17:28:33 +0200 Subject: [PATCH] one more --- static/js/pandora/clipList.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/js/pandora/clipList.js b/static/js/pandora/clipList.js index 49b8970df..df28a63a1 100644 --- a/static/js/pandora/clipList.js +++ b/static/js/pandora/clipList.js @@ -154,8 +154,9 @@ pandora.ui.clipList = function(videoRatio) { poster: '/' + item + '/' + height + 'p' + points[0] + '.jpg', rewind: true, video: partsAndPoints.parts.map(function(i) { - return '/' + item + '/96p' + (i + 1) - + '.' + pandora.user.videoFormat; + var part = (i + 1), + prefix = pandora.site.site.videoprefix.replace('PART', part); + return prefix + '/' + item + '/96p' + part + '.' + pandora.user.videoFormat; }), width: width })