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

@ -7,7 +7,8 @@ Template.listItemsTbl.onCreated(function() {
});
Template.listItemsTbl.onRendered(function() {
$('.modal').modal();
// new modal init here
// $('.modal').modal();
Session.set("showReceivedItems", false);
Session.set("searchVal", "");
});
@ -70,6 +71,8 @@ Template.listItemsTbl.events({
Session.set("method", "delete.listItem");
Session.set("item", this.itemName);
Session.set("view", "List Items");
$('#modalDelete').modal('open');
// put the new modal js here
// $('#modalDelete').modal('open');
},
});