diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-11-21 14:29:35 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-11-21 14:29:35 -0500 |
commit | d967a12fd83892bb8bfb663dec6b989643ca21c2 (patch) | |
tree | e54fbd7d89a40f9432778eedd31f41ffded4ca52 /lib/js/urweb.js | |
parent | de782f9f8f032913d2213065bd54ba0eae48e488 (diff) |
Send RPCs with POST, to avoid caching
Diffstat (limited to 'lib/js/urweb.js')
-rw-r--r-- | lib/js/urweb.js | 2 |
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()); |