xref: /plugin/twofactor/script.js (revision 97647c7eaef0a26a9ad5adfa65a491a6ce7f8784)
1/**
2 * Add JavaScript confirmation to Delete buttons
3 */
4jQuery(function () {
5    jQuery('.twofactor_delconfirm').click(function (event) {
6        if (window.confirm(LANG.del_confirm)) return;
7        event.preventDefault();
8        event.stopPropagation();
9    });
10});
11