summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@tsaousis.gr>2016-05-26 21:15:30 +0300
committerCosta Tsaousis <costa@tsaousis.gr>2016-05-26 21:15:30 +0300
commit898af188649b563ec8e1d689c563155b64366966 (patch)
treef0922f8785607e046fb5d20d5f5eaada6e71557b /web
parentccbf2fb69e888938a48b4e4c3a5f1238697a36a4 (diff)
clickable URLs when a dashboard is not accessible
Diffstat (limited to 'web')
-rw-r--r--web/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/index.html b/web/index.html
index 2c994f4359..0c54350aa8 100644
--- a/web/index.html
+++ b/web/index.html
@@ -1018,7 +1018,7 @@ if(isdemo()) {
var gotoServerValidateRemaining = 0;
function gotoServerValidateUrl(id, guid, url) {
setTimeout(function() {
- document.getElementById('gotoServerList').innerHTML += '<tr><td style="padding-left: 20px;">' + url + '</td><td style="padding-left: 30px;"><code id="' + guid + '-' + id + '-status">checking...</code></td></tr>';
+ document.getElementById('gotoServerList').innerHTML += '<tr><td style="padding-left: 20px;"><a href="' + url + '" target="_blank">' + url + '</a></td><td style="padding-left: 30px;"><code id="' + guid + '-' + id + '-status">checking...</code></td></tr>';
NETDATA.registry.hello(url, function(data) {
if (data) {
console.log('OK ' + id + ' URL: ' + url);