diff options
| author | Alon Levy <alon@pobox.com> | 2015-03-04 00:32:19 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-03-04 00:32:19 +0200 |
| commit | e8429c259e9cc2cbfb89967e984e8b0e2363d87e (patch) | |
| tree | 4ac1b377590f8d0f1111dd19d8e20d1153045767 /src/client/view | |
| parent | 5ecc2b10d32e257518a771f5a6c0244fc3ac9569 (diff) | |
client: fix res/static forgotten rename; Fixes #355
Diffstat (limited to 'src/client/view')
| -rw-r--r-- | src/client/view/graph_view.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 02bb8964..32540bea 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -498,13 +498,13 @@ function GraphView(spec) { .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; } }); |
