From b157eb4181993c17949106d1cc7cfce8e6829de8 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 9 Jul 2011 12:33:46 -0400 Subject: [PATCH] Don't use absolute URLs because the MFE will not work with that --- web_frontend/index.html | 8 ++++---- web_frontend/main.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web_frontend/index.html b/web_frontend/index.html index e733bd0..3764c50 100644 --- a/web_frontend/index.html +++ b/web_frontend/index.html @@ -5,10 +5,10 @@ - - - - + + + +
diff --git a/web_frontend/main.js b/web_frontend/main.js index d5e2ebf..95401da 100644 --- a/web_frontend/main.js +++ b/web_frontend/main.js @@ -47,7 +47,7 @@ armadillo.App.prototype.sendRequest = function(action, extra_data, callback) { var data = new goog.Uri.QueryData(); data.set('action', action); data.extend(extra_data); - goog.net.XhrIo.send('/service', callback, 'POST', data); + goog.net.XhrIo.send('service', callback, 'POST', data); }; /** -- 2.22.5