File tree 1 file changed +7
-6
lines changed
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
16
16
we use the following conventions
17
17
18
18
- e - event
19
- - el - element
19
+ - el, els - element
20
20
- attr, attrs - attribute, attributes
21
21
- prop, props - property, properties
22
22
@@ -27,16 +27,17 @@ We also use the following namespace aliases
27
27
- h - handlers
28
28
- s - subs
29
29
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 ` .
31
31
32
32
## App structure
33
33
34
34
Main structure
35
35
<pre >
36
36
src\
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)
40
41
</pre >
41
42
42
43
We are trying to split our code under renderer into relatively independent modules,
@@ -59,6 +60,6 @@ module\
59
60
60
61
```
61
62
Ctrl+Shift+I Toggle devtools
62
- Ctrl+Shift+H Toggle 10x
63
+ Ctrl+Shift+X Toggle 10x
63
64
Ctrl+R Reload app
64
65
```
You can’t perform that action at this time.
0 commit comments