Vanilla-Notify
Vanilla-Notify copied to clipboard
Vanilla Javascript Notification Library
I have a page which uses the Bootstrap Pagination buttons at the top and the JS code modifies the body of the HTML and the notification toasts get printed at...
Line 178: item.outerHTML = ''; causes an endless loop of NoModificationAllowedError after a few seconds after a notify has been closed by pressing the X.
Is it possible to assign a value z-index to element vnotify-container vn-top-right per options ? Or I need to modify the source .scss file?
Hi, I like this plugin and i would use it inside my bundle, using require (requirejs) or import (ES6). Can you publish it on NPM, and use UMD wrapper (https://github.com/umdjs/umd)...
Hi @MLaritz I have added `removeAll();` function to remove the notification via js function.
Solves #2 Now you will be able to use it in NPM and browser. ``` // NPM var vNotify = require('Notify'); ``` or ``` // Browser var vNotify = window.vNotify;...