mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 20:46:40 -04:00
10 lines
253 B
JavaScript
10 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);
|
|
}
|
|
});
|
|
});
|