mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 13:06:41 -04:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
Meteor.startup(function () {
|
|
Template[getTemplate('feedItem')].events({
|
|
'click .delete-feed': function(e, instance){
|
|
e.preventDefault();
|
|
|
|
if (confirm(i18n.t('are_you_sure')))
|
|
Feeds.remove(instance.data._id);
|
|
}
|
|
});
|
|
});
|