blob: 8dc64a5423b73c58c3a0ee0a8426b96e6f4d0273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Session.setDefault('counter', 0);
Template.hello.helpers({
counter: function () {
return Session.get('counter');
}
});
Template.hello.events({
'click button': function () {
Session.set('counter', Session.get('counter') + 1);
}
});
|