aboutsummaryrefslogtreecommitdiff
path: root/notif/example.html
AgeCommit message (Collapse)Author
2021-09-05notif: convert the example using TypeScript and load it with type="module"Shulhan
2021-08-29notif: make the notification position to fixedShulhan
This is to fix the notification hidden when the current document have scroll.
2021-08-28all: refactoring to follow the coding style in READMEShulhan
* Use snake_case for field, variable, HTML ID, and CSS class names. * Use camelCase for class, interface, type, function, or method names. * An exported type or class. interface, type, method, or function name MUST start with an upper-case letter. * An exported class, type, interface, or function MUST be prefixed with "Wui".
2021-08-28notif: implement component for notificationShulhan
The WuiNotif implement the HTML interface to display pop-up notification. The notification can be triggered by calling method Info() or Error(). Each pop-up has 5 seconds duration, after that they will be removed automatically.