summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorRichard Wall <richard@aziz>2010-06-14 00:59:25 +0100
committerRichard Wall <richard@aziz>2010-06-14 00:59:25 +0100
commitdfa15525f5898af109122b75847362539c2cb20d (patch)
tree448a9966befa45aa5f7f2d7ed1b0c0ad61f6379c /index.html
parentb6112f31a83b60a06347e4ad71b846dc145526eb (diff)
Add static json list option
Diffstat (limited to 'index.html')
-rw-r--r--index.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/index.html b/index.html
index 00174a3..a09903b 100644
--- a/index.html
+++ b/index.html
@@ -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>