diff --git a/Makefile b/Makefile index 19264c3..c599a9a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ name ?= goldpinger -version ?= 1.5.0 +version ?= 1.5.1 bin ?= goldpinger pkg ?= "github.com/bloomberg/goldpinger" tag = $(name):$(version) diff --git a/static/index.html b/static/index.html index 4ed72ce..88cf005 100644 --- a/static/index.html +++ b/static/index.html @@ -49,7 +49,7 @@ limitations under the License. - + @@ -219,7 +219,7 @@ var main = function(timeout){ loadingDialog(true); - fetchJSON("/check_all?timeout="+timeout) + fetchJSON("check_all?timeout="+timeout) .then(function(data){ loadingDialog(false); @@ -423,7 +423,7 @@ var main = function(timeout){ $('#modal-title').html(node.id); $('#modal-body').html(prepareJSON(node._data)); - // show the things + // show the things $('#modal-window-code').modal('show'); }); s.bind("clickStage", function (e) { @@ -439,7 +439,7 @@ var main = function(timeout){ $('#modal-title').html(edge.id); $('#modal-body').html(prepareJSON(edge._data)); - // show the things + // show the things $('#modal-window-code').modal('show'); }); }) @@ -455,10 +455,10 @@ main(); $("#show-data").click(function (e) { // fill the voids - $('#modal-title').html("/check_all"); + $('#modal-title').html("check_all"); $('#modal-body').html(prepareJSON(global_data)); - // show the things + // show the things $('#modal-window-code').modal('show'); }); $("#reload-graph").click(function (e) {