diff options
author | Richard Wall <richard@aziz> | 2010-06-14 00:59:25 +0100 |
---|---|---|
committer | Richard Wall <richard@aziz> | 2010-06-14 00:59:25 +0100 |
commit | dfa15525f5898af109122b75847362539c2cb20d (patch) | |
tree | 448a9966befa45aa5f7f2d7ed1b0c0ad61f6379c /index.html | |
parent | b6112f31a83b60a06347e4ad71b846dc145526eb (diff) |
Add static json list option
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -128,7 +128,12 @@ // Download a list of available rrd files and use it to generate // any viable chart recipes - $.getJSON('rrd_finder.rpy', initialiseCharts); + + // Dynamically generated list of rrd urls + //$.getJSON('rrd_finder.rpy', initialiseCharts); + + // A static json file containing a list of rrd urls + $.getJSON('rrd_list.json', initialiseCharts); }); </script> </head> |