mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added json subtitle output
This commit is contained in:
parent
e66a2c5c14
commit
bd394c4e06
4 changed files with 8 additions and 10 deletions
|
@ -357,13 +357,10 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ul data-role="listview" class="saveButtonContainer ulForm" style="display: none;">
|
||||
<li>
|
||||
<button class="btnSave" type="submit" data-theme="a" data-icon="check" data-mini="true">
|
||||
<br/>
|
||||
<button class="btnSave" type="submit" data-theme="a" data-icon="check">
|
||||
Save
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
|
|
@ -786,7 +786,7 @@
|
|||
|
||||
profile.IgnoreTranscodeByteRangeRequests = $('#chkIgnoreTranscodeByteRangeRequests', page).checked();
|
||||
profile.MaxStreamingBitrate = $('#txtMaxAllowedBitrate', page).val();
|
||||
profile.MaxStaticBitrate = $('#LabelMaxStaticBitrateHelp', page).val();
|
||||
profile.MaxStaticBitrate = $('#txtMaxStaticBitrate', page).val();
|
||||
|
||||
profile.MusicStreamingTranscodingBitrate = $('#txtMusicStreamingTranscodingBitrate', page).val();
|
||||
profile.MusicSyncBitrate = $('#txtMusicStaticBitrate', page).val();
|
||||
|
|
|
@ -308,7 +308,7 @@
|
|||
html += '<li data-role="list-divider">Menu</li>';
|
||||
|
||||
if (commands.indexOf('playlist') != -1) {
|
||||
html += '<li><a href="#" onclick="PlaylistManager.showPanel([\'' + itemId + '\']);">Add to playlist</a></li>';
|
||||
html += '<li><a href="#" onclick="$(\'.playFlyout\').popup(\'close\');PlaylistManager.showPanel([\'' + itemId + '\']);">Add to playlist</a></li>';
|
||||
}
|
||||
|
||||
if (commands.indexOf('edit') != -1) {
|
||||
|
|
|
@ -211,7 +211,8 @@
|
|||
var url = ApiClient.getUrl("Playlists/" + id + "/Items", {
|
||||
|
||||
Ids: $('.fldSelectedItemIds', panel).val() || '',
|
||||
userId: Dashboard.getCurrentUserId()
|
||||
userId: Dashboard.getCurrentUserId(),
|
||||
SortBy: 'SortName'
|
||||
});
|
||||
|
||||
ApiClient.ajax({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue