From baad1b949c2dfd357bb98b94c77592d4e8441bc5 Mon Sep 17 00:00:00 2001 From: rolux Date: Wed, 6 Jun 2012 13:23:53 +0000 Subject: [PATCH] typos --- static/js/pandora/sequencesDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/pandora/sequencesDialog.js b/static/js/pandora/sequencesDialog.js index b076fc00..0639606d 100644 --- a/static/js/pandora/sequencesDialog.js +++ b/static/js/pandora/sequencesDialog.js @@ -28,7 +28,7 @@ pandora.ui.sequencesDialog = function(id, position) { hash = result.data.hash; $sidebar = Ox.Element(), // add video player $list = Ox.IconList({ - fixedRatio: fixedRatio + fixedRatio: fixedRatio, item: function(data, sort, size) { var ratio = data.videoRatio, width = ratio > fixedRatio ? size : Math.round(size * ratio / fixedRatio), @@ -38,7 +38,7 @@ pandora.ui.sequencesDialog = function(id, position) { id: data.id, info: Ox.formatDuration(data['in']) + ' - ' + Ox.formatDuration(data.out), title: data.title + (data.director.length ? ' (' + data.director.join(', ') + ')' : ''), - url: '/' + data.id.split('/')[0] + '/' + height + 'p' + data['in'] + '.jpg'; + url: '/' + data.id.split('/')[0] + '/' + height + 'p' + data['in'] + '.jpg', width: width }; },