Browse Source

Close document properly after writing

Closing document explicitly is recommended by MDN:
https://developer.mozilla.org/en-US/docs/Web/API/Document/write
adaptive-webui-19844
Chocobo1 5 years ago
parent
commit
45bd79ee74
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 1
      src/webui/www/private/scripts/mocha-init.js

1
src/webui/www/private/scripts/mocha-init.js

@ -934,6 +934,7 @@ const initializeWindows = function() { @@ -934,6 +934,7 @@ const initializeWindows = function() {
url: 'api/v2/app/shutdown',
onSuccess: function() {
document.write('<!doctype html><html lang="${LANG}"><head> <meta charset="utf-8"> <title>QBT_TR(qBittorrent has been shutdown)QBT_TR[CONTEXT=HttpServer]</title></head><body> <h1 style="text-align: center;">QBT_TR(qBittorrent has been shutdown)QBT_TR[CONTEXT=HttpServer]</h1></body></html>');
document.close();
stop();
}
}).send();

Loading…
Cancel
Save