1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-03 05:25:28 +00:00

Modify ping url and loader message on restart.

This commit is contained in:
Louis Vézina 2018-10-10 17:06:21 -04:00
parent 1cccd810ae
commit 3119502a0f
2 changed files with 5 additions and 3 deletions

3
.gitignore vendored
View file

@ -4,4 +4,5 @@ cachefile.dbm
*.log.* *.log.*
*.db *.db
*.pyc *.pyc
.idea/* .idea/*
bazarr.pid

View file

@ -41,7 +41,7 @@
</head> </head>
<body> <body>
<div id='loader' class="ui page dimmer"> <div id='loader' class="ui page dimmer">
<div class="ui indeterminate text loader">Loading...</div> <div id='loader_text' class="ui indeterminate text loader">Loading...</div>
</div> </div>
% include('menu.tpl') % include('menu.tpl')
@ -225,6 +225,7 @@
}) })
$('#restart').click(function(){ $('#restart').click(function(){
$('#loader_text').text("Bazarr is restarting, please wait...");
$.ajax({ $.ajax({
url: "{{base_url}}restart", url: "{{base_url}}restart",
async: true async: true
@ -236,7 +237,7 @@
function ping() { function ping() {
$.ajax({ $.ajax({
url: window.location.href, url: '{{base_url}}',
success: function(result) { success: function(result) {
window.location.reload(); window.location.reload();
} }