Template not calling rendered since upgrading meteor to version 0.9.4 -



Template not calling rendered since upgrading meteor to version 0.9.4 -

since upgrading latest version of meteor templates rendered helper isn't getting called. read release docs , didn't mention changes concerning rendered. having same issue , if how did prepare it?

since meteor version > 0.9.3 have utilize rendered outside of template.name.helpers. illustration rendered not called when using this:

template.name.helpers({ rendered : function () { console.log("this wont called"); }, });

the right way utilize rendered outside of helper construct.

template.name.rendered = function () { console.log("this called"); };

meteor

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -