Confirmed users
14,525
edits
No edit summary |
No edit summary |
||
Line 35: | Line 35: | ||
== Refactoring == | == Refactoring == | ||
; Timeouts & Delays | |||
* gDelay: replace with a discrete int value | |||
* gTimeout: replace with TIMEOUT | |||
== | == Style Guidelines == | ||
; Timeouts & Delays | |||
* Proposed Guidelines: | |||
** Delay: Use discrete value | |||
** Timeout: Use global TIMEOUT | |||
* Henrik: Timeouts should be encapsulated within a global shared module | |||
* Geo: Use default params where appropriate, wrapper functions where not | |||
; Constants | |||
* Proposed Guidelines: | |||
** Exist between ''requires'' and ''setupModule()'' | |||
** const SOME_CONSTANT = value; | |||
* Geo: All ''unchanging'' variables as constants | |||
const | |||
All |