Updating the materialize library and calls.

This commit is contained in:
Brian McGonagill 2024-07-22 11:56:35 -05:00
parent a118bf38fc
commit e44ef98be4
17 changed files with 10582 additions and 15529 deletions

View file

@ -3,7 +3,8 @@ Template.deleteConfirmationModal.onCreated(function() {
});
Template.deleteConfirmationModal.onRendered(function() {
$('.modal').modal();
// put new modal init here
// $('.modal').modal();
});
Template.deleteConfirmationModal.helpers({
@ -26,7 +27,8 @@ Template.deleteConfirmationModal.events({
console.log(" ERROR deleting item from modal: " + err);
} else {
// console.log(" SUCCESSFULLY deleted.");
$('#modalDelete').modal('close');
// put the new modal open / close here
// $('#modalDelete').modal('close');
}
});
},