diff options
| author | Shulhan <ms@kilabit.info> | 2021-08-28 20:23:24 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-08-28 21:12:26 +0700 |
| commit | 50c57f048eecab68570a0568f20922044935ecca (patch) | |
| tree | fe2f28401145e524fa09a0688ba59c50cf26dbaa /editor/example.html | |
| parent | cf678376a91bf58ff4d9c032f96662ca02bdc59b (diff) | |
| download | pakakeh.ts-50c57f048eecab68570a0568f20922044935ecca.tar.xz | |
all: refactoring to follow the coding style in README
* 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".
Diffstat (limited to 'editor/example.html')
| -rw-r--r-- | editor/example.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/example.html b/editor/example.html index 7321386..1c22f3f 100644 --- a/editor/example.html +++ b/editor/example.html @@ -20,7 +20,7 @@ OpenFile: doOpenFile, } - wuiEditor = new Editor(opts) + wuiEditor = new WuiEditor(opts) wuiEditor.OpenFile("/test.aww") } |
