-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUChileBulletin.js
48 lines (38 loc) · 1.03 KB
/
UChileBulletin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Tasks = new Mongo.Collection("tasks");
if (Meteor.isClient){
Meteor.subscribe('calendar', function(){
Session.set('superCalendarReady', true);
});
Template.body.helpers({
tasks: function(){
//show newest task first
return Tasks.find({}, {sort: {createAt: - 1}});
}
});
Template.body.events({
"submit .new-task": function(event){
//this function is called when the new task form is submitted
var text = event.target.text.value;
Tasks.insert({
text: text,
createAt: new Date() //current time
});
//Clear form
event.target.text.value = "";
//prevent default form submit
return false;
},
"click .toggle-checked": function(){
//Set the checked property to the opposite of its current value
Tasks.update(this._id, {$set: {checked: ! this.checked}});
},
"click .delete": function(){
Tasks.remove(this._id);
}
});
}
if (Meteor.isServer){
Meteor.publish('calendar', function(){
return Calendar.find();
});
}