Skip to content

Commit

Permalink
Fix encoding chaos
Browse files Browse the repository at this point in the history
  • Loading branch information
cubehouse committed Apr 21, 2013
1 parent 2312b09 commit 1dc949e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/forms.js
Expand Up @@ -75,7 +75,7 @@ define(["encode"], function(encoder) {

var i = $("<input type='text' name='"+o.name+"' />");

i.attr("value", o.value);
i.attr("value", encoder.decode(o.value));

if (o.disable) i.attr("disabled", true);

Expand Down

0 comments on commit 1dc949e

Please sign in to comment.