forked from 0x2620/pandora
resolutions moved
This commit is contained in:
parent
0cc24d09c9
commit
d186ab42d8
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ pandora.ui.videoPreview = function(data) {
|
|||
getFrame: function(position) {
|
||||
var width = pandora.user.ui.sidebarSize,
|
||||
height = Math.round(width / pandora.user.infoRatio),
|
||||
resolution = Ox.filter(data.video.resolutions, function(resolution, i) {
|
||||
return resolution >= height || i == data.video.resolutions.length - 1;
|
||||
resolution = Ox.filter(pandora.site.resolutions, function(resolution, i) {
|
||||
return resolution >= height || i == pandora.site.resolutions.length - 1;
|
||||
})[0];
|
||||
return '/' + data.id + '/' + resolution + 'p' + (
|
||||
Ox.isUndefined(position) ? '' : position
|
||||
|
|
Loading…
Reference in a new issue