From cecac6ee2e0e1491d32cee675d93df946777d5a0 Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Mon, 30 Jan 2012 17:08:38 -0500 Subject: [PATCH] Save forms with HTTP POST, which allows more data to be sent than the query string --- scripts/io.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/io.js b/scripts/io.js index 58d942c9e..faace3e0d 100755 --- a/scripts/io.js +++ b/scripts/io.js @@ -85,6 +85,7 @@ var io = { $.ajax({ url: "code/ajax_save.php", data: data_str, + type: 'POST', success: function(data) { var json = $.evalJSON(data);