mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
250 B
JavaScript
11 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);
|
||
|
}
|
||
|
});
|
||
|
});
|