aboutsummaryrefslogtreecommitdiff
path: root/editor/example.html
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2021-08-28 20:23:24 +0700
committerShulhan <ms@kilabit.info>2021-08-28 21:12:26 +0700
commit50c57f048eecab68570a0568f20922044935ecca (patch)
treefe2f28401145e524fa09a0688ba59c50cf26dbaa /editor/example.html
parentcf678376a91bf58ff4d9c032f96662ca02bdc59b (diff)
downloadpakakeh.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.html2
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")
}