forked from 0x2620/pandora
explicitely display 'No Video' in video info for items without video
This commit is contained in:
parent
07f9546106
commit
592d7796cd
1 changed files with 13 additions and 0 deletions
|
@ -115,6 +115,19 @@ pandora.ui.info = function() {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
that.append(
|
||||||
|
Ox.Bar({size: 16}).css({
|
||||||
|
position: 'absolute',
|
||||||
|
bottom: 0
|
||||||
|
}).append(
|
||||||
|
$('<div>').css({
|
||||||
|
marginTop: '2px',
|
||||||
|
fontSize: '9px',
|
||||||
|
textAlign: 'center'
|
||||||
|
}).html('No Video')
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
previousView != 'video' && resizeInfo();
|
previousView != 'video' && resizeInfo();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue