Skip to content

Commit

Permalink
Correct console output
Browse files Browse the repository at this point in the history
  • Loading branch information
jhs committed Sep 1, 2011
1 parent 83006a1 commit b62ef03
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions browser/main.js
Expand Up @@ -68,9 +68,8 @@ define(['events', 'querystring', 'follow/cli'], function(events, querystring, cl

process.stdout = {};
process.stdout.write = function(x) {
var con = jQuery('#results');
var html = con.html();
con.html(html + x);
var con = jQuery('#con');
con.append(x);
}

process.exit = function(code) {
Expand Down

0 comments on commit b62ef03

Please sign in to comment.