From 9404d197cedba1c7d2c076762f631c20ad700255 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Sun, 21 Dec 2014 18:01:15 +0200 Subject: s/res/static/ for local running - not tested on rhizi.net --- src/client/app.js | 2 +- src/client/rz_core.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/client/app.js b/src/client/app.js index 08257ce0..c2c372df 100644 --- a/src/client/app.js +++ b/src/client/app.js @@ -1,5 +1,5 @@ (function() { - var lib_path = '/res/lib/'; + var lib_path = '/static/lib/'; var config = { paths: { jquery: lib_path + 'jquery', diff --git a/src/client/rz_core.js b/src/client/rz_core.js index 7ec19692..473e7d59 100644 --- a/src/client/rz_core.js +++ b/src/client/rz_core.js @@ -568,13 +568,13 @@ function update_view__graph(no_relayout) { .attr("xlink:href", function(d) { switch (d.status) { case "done": - return "res/img/check.png"; + return "static/img/check.png"; break; case "current": - return "res/img/wait.png"; + return "static/img/wait.png"; break; case "waiting": - return "res/img/cross.png"; + return "static/img/cross.png"; break; } }); -- cgit v1.3.1