diff options
author | Jayaram R Pai | 2014-09-25 16:13:56 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-25 16:13:56 +0530 |
commit | a5d89d3cb8bd12a6acc3c6338d9edf94cde65474 (patch) | |
tree | 07977532fcf704df3e7eebb8e177b77efac1871c /static/dajaxice | |
parent | 86165f1f8a7a9b87bb2a563c795935c7583bb932 (diff) | |
download | scipy2014-a5d89d3cb8bd12a6acc3c6338d9edf94cde65474.tar.gz scipy2014-a5d89d3cb8bd12a6acc3c6338d9edf94cde65474.tar.bz2 scipy2014-a5d89d3cb8bd12a6acc3c6338d9edf94cde65474.zip |
added ALIAS_URL to config
Diffstat (limited to 'static/dajaxice')
-rw-r--r-- | static/dajaxice/dajaxice.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/dajaxice/dajaxice.core.js b/static/dajaxice/dajaxice.core.js index e879d45..82c7153 100644 --- a/static/dajaxice/dajaxice.core.js +++ b/static/dajaxice/dajaxice.core.js @@ -65,7 +65,7 @@ var Dajaxice = { var send_data = 'argv='+encodeURIComponent(JSON.stringify(argv)), oXMLHttpRequest = new XMLHttpRequest, - endpoint = '/2014/dajaxice/'+dajaxice_function+'/'; + endpoint = aliasUrl+'/dajaxice/'+dajaxice_function+'/'; if(method == 'GET'){ endpoint = endpoint + '?' + send_data; |