File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ In addition to the [idiomatic names](https://guide.clojure.style/#idiomatic-name
1616we use the following conventions
1717
1818- e - event
19- - el - element
19+ - el, els - element
2020- attr, attrs - attribute, attributes
2121- prop, props - property, properties
2222
@@ -27,16 +27,17 @@ We also use the following namespace aliases
2727- h - handlers
2828- s - subs
2929
30- If the namespace belongs to a different module, we use ` module.v ` .
30+ If the namespace belongs to a dedicated module, we use ` module.v ` .
3131
3232## App structure
3333
3434Main structure
3535<pre >
3636src\
37- ├── renderer\ <--- <a href =" https://www.electronjs.org/docs/latest/tutorial/process-model#the-renderer-process " >renderer process</a >
38- ├── main.cljs <--- <a href =" https://www.electronjs.org/docs/latest/tutorial/process-model#the-main-process " >main process</a >
39- └── preload.cljs <--- <a href =" https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts " >preload script</a >
37+ ├── renderer\ <--- [Renderer Process](https://www.electronjs.org/docs/latest/tutorial/process-model#the-renderer-process</a >
38+ ├── electron\ <--- [Main Process](https://www.electronjs.org/docs/latest/tutorial/process-model#the-main-process),[Preload script](https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts)
39+ ├── lang\ <--- Translation files
40+ └── worker\ <--- [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API)
4041</pre >
4142
4243We are trying to split our code under renderer into relatively independent modules,
@@ -59,6 +60,6 @@ module\
5960
6061```
6162Ctrl+Shift+I Toggle devtools
62- Ctrl+Shift+H Toggle 10x
63+ Ctrl+Shift+X Toggle 10x
6364Ctrl+R Reload app
6465```
You can’t perform that action at this time.
0 commit comments