mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
31 lines
870 B
Markdown
31 lines
870 B
Markdown
# JS for iTop
|
|
|
|
## File location
|
|
|
|
In order to better separate our developments from the embedded third-party libs, files should be moved in either the `/js/components`, `/lib`, `/node_modules` folders.
|
|
|
|
IMPORTANT: Before moving a file, we should first consider if:
|
|
|
|
- The file is used in an iTop extension that should be compatible with the iTop version currently under developments
|
|
- The file is still used in iTop itself (or if we can consider removing it for clean up)
|
|
|
|
## Leading semicolon
|
|
|
|
When concataining 2 files with code execution, we might have a prb.
|
|
|
|
For example :
|
|
|
|
```
|
|
// file A
|
|
(A)()
|
|
// file B
|
|
(B)()
|
|
```
|
|
|
|
Having `(A)()(B)()` is different than `(A)();(B)();` !
|
|
|
|
To avoid those problems simply add a leading semicolon on all JS files.
|
|
|
|
See :
|
|
https://stackoverflow.com/a/23056287
|
|
https://github.com/Combodo/iTop/commit/3959ed505b324d26500c517731371ae318576af7 |