1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

added a play command

This commit is contained in:
Luke Pulverenti 2013-05-28 13:25:10 -04:00
parent 8caa7a91e3
commit 1e450d45a2
3 changed files with 13 additions and 3 deletions

View file

@ -171,7 +171,7 @@
var newPositionTicks = (newPercent / 100) * currentItem.RunTimeTicks;
changeStream(newPositionTicks);
changeStream(Math.floor(newPositionTicks));
}
$(function () {
@ -1111,7 +1111,7 @@
}
if (stream.BitRate) {
options.push((parseInt(stream.BitRate / 1000)) + ' kbps');
options.push((Math.floor(stream.BitRate / 1000)) + ' kbps');
}
if (stream.Channels) {