isa-bubbles
Version:
Tiny, dependency-free JavaScript widgets that add interactive “bubbles” to any website — such as credits, contact forms, or feedback prompts.
13 lines (10 loc) • 343 B
JavaScript
// src/index.js
import CreditBubble from "./CreditBubble.js";
import ContactBubble from "./ContactBubble.js";
// Named exports
export { CreditBubble, ContactBubble };
// Make globally available in browser for <script> usage
if (typeof window !== "undefined") {
window.CreditBubble = CreditBubble;
window.ContactBubble = ContactBubble;
}