| Age | Commit message (Collapse) | Author |
|
This is to simplify development on third party where they can
clone and include the file directly without installing or running
anything to build the files.
|
|
|
|
In this changes we introduce eslint as our linter for TypeScript and
update our tsconfig to be more strict.
The ".eslintrc.yaml" and "tsconfig.json" is taken from golang/website
repository [1].
[1]: https://cs.opensource.google/go/x/website
|
|
I cannot remember how I reformat those files previously, probably without
any tools.
This changes reformat the TypeScript files using prettier and HTML files
using js-beautify.
|
|
See https://kilabit.info/journal/2022/gpl/ for more information.
|
|
This fix the notification displayed below other element, while it
should be on top.
|
|
|
|
|
|
This is to fix the notification hidden when the current document have
scroll.
|
|
* 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".
|
|
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.
|