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