From 2c6ddd8c565a08c49871875b557231adf9c08f73 Mon Sep 17 00:00:00 2001 From: j Date: Sat, 30 Jan 2016 12:46:03 +0530 Subject: [PATCH] fix json path --- examples/lists/json/js/example.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/lists/json/js/example.js b/examples/lists/json/js/example.js index 9d247363..3f1b2a05 100644 --- a/examples/lists/json/js/example.js +++ b/examples/lists/json/js/example.js @@ -4,10 +4,10 @@ This is probably the easiest way of displaying a complex data structure... Ox.load('UI', function() { - Ox.getJSON(Ox.PATH + 'Ox.Geo/json/Ox.Geo.json', function(data) { + Ox.getJSON(Ox.PATH + 'Geo/json/Geo.json', function(data) { Ox.TreeList({data: data}).appendTo(Ox.$body); }); -}); \ No newline at end of file +});