899 B
899 B
applyTo
| applyTo |
|---|
| wled00/data/** |
Web UI Coding Conventions
Formatting
- Indent HTML and JavaScript with tabs
- Indent CSS with tabs or spaces
JavaScript Style
- camelCase for functions and variables:
gId(),selectedFx,currentPreset - Abbreviated helpers are common:
dfordocument,gId()forgetElementById() - Mark WLED-MM additions with
// WLEDMMcomments
Key Files
index.htm— main interfaceindex.js— functions that manage / update the main interface- peek.js, liveview*.htm - live preview in main interface
settings*.htm— configuration pages*.css— stylesheets (inlined during build)
Build Integration
Files in this directory are processed by tools/cdata.js into generated headers
(wled00/html_*.h, wled00/js_*.h).
Run npm run build after any change. Never edit generated headers directly.