/**
* Created by MacBookPro on 6/3/15.
* By Pamungkas Jayuda
* yulius.jayuda@gmail.com / +628119003077
*/
Template.masterBibits.created = function () {
Session.set('limit', 5);
Session.set('textSearch', "");
Session.set('isCommentsMasterBibit', false);
Session.set('idCommentsMasterBibit', "");
Deps.autorun(function () {
Meteor.subscribe('masterBibits', Session.get('limit'));
});
}
Template.masterBibits.rendered...