summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-03-04 00:32:19 +0200
committerAlon Levy <alon@pobox.com>2015-03-04 00:32:19 +0200
commite8429c259e9cc2cbfb89967e984e8b0e2363d87e (patch)
tree4ac1b377590f8d0f1111dd19d8e20d1153045767 /src/client
parent5ecc2b10d32e257518a771f5a6c0244fc3ac9569 (diff)
client: fix res/static forgotten rename; Fixes #355
Diffstat (limited to 'src/client')
-rw-r--r--src/client/view/graph_view.js6
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;
}
});