mdb-ui-kit/meteor/example/client/bmd.js

16 lines
329 B
JavaScript
Raw Normal View History

2015-03-17 18:36:14 +03:00
'use strict';
var Buttons = new Mongo.Collection(null);
Template.hello.helpers({
buttons: function () {
return Buttons.find();
}
});
Template.hello.events({
'click button': function (event, template) {
Buttons.insert({name: _.sample(['No, click ME!', 'Click me too!', 'Click here!', 'Hey!', 'Psst!'])});
}
});