mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Inicio servicios para presupuestos
This commit is contained in:
@ -175,6 +175,12 @@
|
||||
$(this).find('.btn-confirm').attr('href', $(e.relatedTarget).data('href'));
|
||||
});
|
||||
|
||||
$('#confirm2delete').keypress(function(e) { // Attach the form handler to the keypress event
|
||||
if (e.keyCode == 13) { // If the the enter key was pressed.
|
||||
$('#confirmDelete').click(); // Trigger the button(elementId) click event.
|
||||
}
|
||||
});
|
||||
|
||||
function toggleAllCheckboxes($cssClass, $io=null) {
|
||||
$('.'+$cssClass).prop('checked', $io);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user