diff --git a/static/index.html b/static/index.html
index 279ee15..d77cfcf 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);
@@ -372,7 +372,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) {
@@ -388,7 +388,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');
});
})
@@ -404,10 +404,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) {