diff --git a/libr/core/rtr.c b/libr/core/rtr.c index d0b9d11a24..5a28cbc060 100644 --- a/libr/core/rtr.c +++ b/libr/core/rtr.c @@ -34,6 +34,7 @@ R_API int r_core_rtr_http(RCore *core, int launch) { int x = r_config_get_i (core->config, "scr.html"); int y = r_config_get_i (core->config, "scr.color"); int z = r_config_get_i (core->config, "asm.bytes"); + int u = r_config_get_i (core->config, "scr.interactive"); const char *port = r_config_get (core->config, "http.port"); s = r_socket_new (R_FALSE); s->local = !r_config_get_i (core->config, "http.public"); @@ -51,6 +52,7 @@ R_API int r_core_rtr_http(RCore *core, int launch) { r_config_set (core->config, "scr.html", "true"); r_config_set (core->config, "scr.color", "false"); r_config_set (core->config, "asm.bytes", "false"); + r_config_set (core->config, "scr.interactive", "false"); eprintf ("Starting http server...\n"); eprintf ("http://localhost:%d/\n", atoi (port)); while (!r_cons_singleton ()->breaked) { @@ -107,6 +109,7 @@ R_API int r_core_rtr_http(RCore *core, int launch) { r_config_set_i (core->config, "scr.html", x); r_config_set_i (core->config, "scr.color", y); r_config_set_i (core->config, "asm.bytes", z); + r_config_set_i (core->config, "scr.interactive", u); return 0; } diff --git a/shlr/www/graph/index.html b/shlr/www/graph/index.html index 304074235e..3b00fe36d2 100644 --- a/shlr/www/graph/index.html +++ b/shlr/www/graph/index.html @@ -1,7 +1,7 @@ - + js-graph.it homepage diff --git a/shlr/www/index.html b/shlr/www/index.html index aa5b6ea29d..9bc703e6ff 100644 --- a/shlr/www/index.html +++ b/shlr/www/index.html @@ -1,5 +1,6 @@ + r2w2