Skip to content

Commit

Permalink
Fixing the tplcontext when no macrolibs are there
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Brosset committed Sep 4, 2012
1 parent dfc0505 commit 616ed5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aria/templates/TemplateCtxt.js
Expand Up @@ -633,7 +633,7 @@
*/
_setOut : function (out) {
this._out = out;
var macrolibs = this._macrolibs;
var macrolibs = this._macrolibs || [];
for (var i = 0, l = macrolibs.length; i < l; i++) {
macrolibs[i]._setOut(out);
}
Expand Down

0 comments on commit 616ed5a

Please sign in to comment.