123456789101112131415161718192021222324252627282930313233 |
- Template.website_item.events({
- "click .js-upvote": function (event) {
-
-
- const websiteId = this._id;
- console.log("Up voting website with id " + websiteId);
-
-
- return false;
- },
- "click .js-downvote": function (event) {
-
-
- const websiteId = this._id;
- console.log("Down voting website with id " + websiteId);
-
-
- return false;
- }
- });
|