Browse Source

[WebUI] Display hostname:port/path in the page title

tags/1.7.2
Alexander Moisseev 6 years ago
parent
commit
dd963c8ba5
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      interface/js/main.js

+ 5
- 0
interface/js/main.js View File

@@ -21,6 +21,11 @@ requirejs.config({
}
});

document.title = window.location.hostname +
(window.location.port ? ":" + window.location.port : "") +
(window.location.pathname !== "/" ? window.location.pathname : "") +
" - Rspamd Web Interface";

define("d3.global", ["d3"], function(_) {
d3 = _;
});

Loading…
Cancel
Save