1jQuery(function() {
2
3    jQuery('#plugin__structnotification_cancel').click('on', function (event) {
4        if (!window.confirm(LANG.plugins.telleveryone.cancel_confirm)) {
5            event.preventDefault();
6        }
7    });
8    jQuery('.plugin__structnotification_delete').click('on', function (event) {
9        if (!window.confirm(LANG.plugins.telleveryone.delete_confirm)) {
10            event.preventDefault();
11        }
12    });
13});
14