Getting the popover Application working on the most superficial level, and creating a generic popover mixin

This commit is contained in:
Oliver-Akins 2025-03-13 23:36:25 -06:00
parent af5cf4acd5
commit 8e8202f8a6
7 changed files with 244 additions and 12 deletions

View file

@ -0,0 +1,4 @@
export function GenericPopoverMixin(HandlebarsApp) {
class GenericRipCryptPopover extends HandlebarsApp {};
return GenericRipCryptPopover;
};