mirror of
https://github.com/skishore/makemeahanzi.git
synced 2025-10-29 01:46:07 +08:00
14 lines
249 B
JavaScript
14 lines
249 B
JavaScript
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);
|
|
}
|
|
});
|