diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-07-12 00:59:01 -0400 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-07-12 00:59:01 -0400 |
commit | 39d2613b75160a47a93df560d51b30854249ce9d (patch) | |
tree | 49af0dc237016f068b764a5623e2d31836c2bc6e /templates/go.html | |
parent | e152d2f2d1e257b1ec51adb3640e350207fda77d (diff) | |
download | equator-39d2613b75160a47a93df560d51b30854249ce9d.tar.gz equator-39d2613b75160a47a93df560d51b30854249ce9d.zip |
almost working again
Diffstat (limited to 'templates/go.html')
-rw-r--r-- | templates/go.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/go.html b/templates/go.html index cb1e855..5569cf2 100644 --- a/templates/go.html +++ b/templates/go.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block javascript %} -<script type="text/javascript" src="The%20Equator_files/prototype.js"> +<script type="text/javascript" src="/static/prototype.js"> </script> <script type="text/javascript"> var variables = [] @@ -9,7 +9,7 @@ var equations = [] function get_variables() { $('status_bin').innerHTML= "Fetching..." var initialVariablesRequest = new Ajax.Request( - "/variable/json/all/", + "/json/all_vars/", { method: 'get', onSuccess: handle_variables }); } @@ -44,7 +44,7 @@ function toggle_variable(vnum) { } } var freshEquationsRequest = new Ajax.Request( - "/equation/json/byvariables/" + whichvars, + "/json/equs_by_vars/" + whichvars, { method: 'get', onSuccess: handle_equations}); } |