mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update to service stack 3.0.70.0
This commit is contained in:
parent
dbf7337f7c
commit
7e5011f03d
7 changed files with 45 additions and 29 deletions
|
@ -2,9 +2,11 @@
|
|||
|
||||
onPageShow: function () {
|
||||
|
||||
var page = this;
|
||||
|
||||
LogPage.startLine = 0;
|
||||
|
||||
$('#logContents', this).html('');
|
||||
$('#logContents', page).html('');
|
||||
|
||||
$(ApiClient).on("websocketmessage", LogPage.onWebSocketMessage).on("websocketopen", LogPage.onWebSocketConnectionChange).on("websocketerror", LogPage.onWebSocketConnectionChange).on("websocketclose", LogPage.onWebSocketConnectionChange);
|
||||
|
||||
|
@ -18,6 +20,12 @@
|
|||
else if (autoScroll == "false") {
|
||||
LogPage.updateAutoScroll(false);
|
||||
}
|
||||
|
||||
ApiClient.getSystemInfo().done(function(systemInfo) {
|
||||
|
||||
$('#logPath', page).html(systemInfo.LogPath);
|
||||
|
||||
});
|
||||
},
|
||||
|
||||
onPageHide: function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue