From efdfa015ad5a873fe43f25eedf84333279c980eb Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Fri, 29 Mar 2013 18:38:52 -0600 Subject: [PATCH] forcing post; certain web servers will not accept URIs that are too long. --- whalesong/repl-prototype/htdocs/rpc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/whalesong/repl-prototype/htdocs/rpc.js b/whalesong/repl-prototype/htdocs/rpc.js index eadf330..9f05467 100644 --- a/whalesong/repl-prototype/htdocs/rpc.js +++ b/whalesong/repl-prototype/htdocs/rpc.js @@ -12,7 +12,8 @@ }, 'data': {'name' : name, 'src' : code }, - 'dataType': 'json' + 'dataType': 'json', + 'type' : 'post' }); };