Skip to content

Commit

Permalink
Unescape job.data for HTML content
Browse files Browse the repository at this point in the history
  • Loading branch information
behrad committed Feb 18, 2014
1 parent 8d60640 commit 84c6ce5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/http/public/javascripts/job.js
Expand Up @@ -103,7 +103,8 @@ Job.prototype.render = function (isNew) {
data = this.data[keys[i]];
if ('object' == typeof data) data = JSON.stringify(data);
var row = View('row');
row.title(keys[i] + ':').value(data);
// row.title(keys[i] + ':').value(data);
row.title(keys[i] + ':').value($('<p></p>').text(data).html());
view.data.add(row);
}

Expand Down

0 comments on commit 84c6ce5

Please sign in to comment.