aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/js
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-11-21 14:29:35 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-11-21 14:29:35 -0500
commitd967a12fd83892bb8bfb663dec6b989643ca21c2 (patch)
treee54fbd7d89a40f9432778eedd31f41ffded4ca52 /lib/js
parentde782f9f8f032913d2213065bd54ba0eae48e488 (diff)
Send RPCs with POST, to avoid caching
Diffstat (limited to 'lib/js')
-rw-r--r--lib/js/urweb.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js
index 5885143e..9f3c332f 100644
--- a/lib/js/urweb.js
+++ b/lib/js/urweb.js
@@ -610,7 +610,7 @@ function getXHR(uri)
var sig = null;
function requestUri(xhr, uri, needsSig) {
- xhr.open("GET", uri, true);
+ xhr.open("POST", uri, true);
if (client_id != null) {
xhr.setRequestHeader("UrWeb-Client", client_id.toString());