mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
17 lines
341 B
JavaScript
17 lines
341 B
JavaScript
![]() |
Meteor.startup(function () {
|
||
|
Template.feedItem.helpers({
|
||
|
formId: function () {
|
||
|
return 'updateFeed-'+ this._id
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Template.feedItem.events({
|
||
|
'click .delete-link': function(e, instance){
|
||
|
e.preventDefault();
|
||
|
if (confirm("Delete feed?")) {
|
||
|
Feeds.remove(instance.data._id);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
});
|