Skip to content

Commit

Permalink
[fix] Pass in the streaming boolean so we receive our template on the…
Browse files Browse the repository at this point in the history
… client
  • Loading branch information
3rd-Eden committed Jun 10, 2014
1 parent 503dd7b commit b90a9a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion page.js
Expand Up @@ -363,7 +363,7 @@ Page.readable('async', function render(err, data) {
async.each(this.enabled.concat(this.disabled), function (pagelet, next) {
page.debug('Invoking pagelet %s/%s render', pagelet.name, pagelet.id);

data = page.compiler.pagelet(pagelet);
data = page.compiler.pagelet(pagelet, pagelet.streaming);
data.processed = ++page.n;

pagelet.render({
Expand Down

0 comments on commit b90a9a4

Please sign in to comment.