diff options
author | bitoiu <vmrmonteiro@gmail.com> | 2012-10-10 23:53:52 +0100 |
---|---|---|
committer | bitoiu <vmrmonteiro@gmail.com> | 2012-10-10 23:53:52 +0100 |
commit | a9550a95ce38adbafcc2b4a5d7b1cf26dc03ed35 (patch) | |
tree | a5f890e9551d6de26638eca98f473e725e6a0fc2 /examples | |
parent | 308ac05355d24c10f178289b1f96d8b69f7f20da (diff) | |
download | backbonetutorials-a9550a95ce38adbafcc2b4a5d7b1cf26dc03ed35.zip backbonetutorials-a9550a95ce38adbafcc2b4a5d7b1cf26dc03ed35.tar.gz backbonetutorials-a9550a95ce38adbafcc2b4a5d7b1cf26dc03ed35.tar.bz2 |
Setting a local configuration on app.js
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cross-domain/js/views/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cross-domain/js/views/app.js b/examples/cross-domain/js/views/app.js index 601068d..3109e26 100644 --- a/examples/cross-domain/js/views/app.js +++ b/examples/cross-domain/js/views/app.js @@ -32,8 +32,8 @@ define([ $.ajaxPrefilter( function( options, originalOptions, jqXHR ) { // Your server goes below - //options.url = 'http://localhost:8000' + options.url; - options.url = 'http://cross-domain.nodejitsu.com' + options.url; + options.url = 'http://localhost:8000' + options.url; + // options.url = 'http://cross-domain.nodejitsu.com' + options.url; }); }, |