0.3.1 • Published 4 years ago
@intergas/intergas-app-modal v0.3.1
Install
npm install @intergas/intergas-app-modal
Usage
import '@intergas/intergas-app-modal';
In your html
<intergas-app-modal on-background="dark"></intergas-app-modal>
Loading the app data
window.addEventListener('DOMContentLoaded', () => {
document.querySelector('intergas-app-modal').setAttribute('apps', JSON.stringify([
{
name: "Example",
logoSrc: "path/to/image.png",
homePageUrl: "https://example.com"
}
]));
});