Skip to content

Commit

Permalink
Change for quoting consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocaseri committed Dec 27, 2013
1 parent 1e1c392 commit dd60570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dashing.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports.Dashing = function Dashing() {
'X-Accel-Buffering': 'no' // Disable buffering for nginx
});
res.write('\n');
res.write(Array(2049).join(" ") + '\n'); // 2kb padding for IE
res.write(Array(2049).join(' ') + '\n'); // 2kb padding for IE
res.write(latest_events());
res.flush(); // need to flush with .compress()

Expand Down

0 comments on commit dd60570

Please sign in to comment.