Fixed absolute uri

This commit is contained in:
James Cole 2015-10-05 20:30:57 +02:00
parent ebc77540b9
commit f5216c0d85

View File

@ -47,7 +47,7 @@ function getBoxAmounts() {
var boxes = ['in', 'out', 'bills-unpaid', 'bills-paid'];
for (var x in boxes) {
var box = boxes[x];
$.getJSON('/json/box/' + box).success(putData).fail(failData);
$.getJSON('json/box/' + box).success(putData).fail(failData);
}
}