fix for #301, headers being URI encoded

This commit is contained in:
Tony Tam
2013-09-05 11:39:18 -07:00
parent 8a9eedfdf3
commit 999367589d
3 changed files with 3 additions and 3 deletions

View File

@@ -83,7 +83,7 @@ class OperationView extends Backbone.View
for o in form.find("input")
if(o.value? && jQuery.trim(o.value).length > 0)
map[o.name] = encodeURI(o.value)
map[o.name] = o.value
for o in form.find("textarea")
if(o.value? && jQuery.trim(o.value).length > 0)