mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix class name collision
This commit is contained in:
parent
d994150c28
commit
63836a625a
2 changed files with 4 additions and 4 deletions
|
@ -153,7 +153,7 @@
|
||||||
|
|
||||||
clearProgressInterval();
|
clearProgressInterval();
|
||||||
|
|
||||||
var intervalTime = ApiClient.isWebSocketOpen() ? 4000 : 20000;
|
var intervalTime = ApiClient.isWebSocketOpen() ? 2000 : 20000;
|
||||||
|
|
||||||
currentProgressInterval = setInterval(function () {
|
currentProgressInterval = setInterval(function () {
|
||||||
|
|
||||||
|
|
|
@ -848,7 +848,7 @@
|
||||||
html += '<span class="duration"></span>';
|
html += '<span class="duration"></span>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
html += '<div class="positionSliderContainer"><input type="range" name="positionSlider" id="positionSlider" min="0" max="100" value="50" step=".1" style="display:none;" /></div>';
|
html += '<div class="remotePositionSliderContainer"><input type="range" name="positionSlider" id="positionSlider" min="0" max="100" value="50" step=".1" style="display:none;" /></div>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
html += '<div style="text-align:center; margin: 0 0 2em;">';
|
html += '<div style="text-align:center; margin: 0 0 2em;">';
|
||||||
|
@ -930,9 +930,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (session.CanSeek) {
|
if (session.CanSeek) {
|
||||||
$('.positionSliderContainer', elem).show();
|
$('.remotePositionSliderContainer', elem).show();
|
||||||
} else {
|
} else {
|
||||||
$('.positionSliderContainer', elem).hide();
|
$('.remotePositionSliderContainer', elem).hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
var time = session.NowPlayingPositionTicks || 0;
|
var time = session.NowPlayingPositionTicks || 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue