Changes between Version 19 and Version 20 of TracDev/CodingStyle
- Timestamp:
- Jul 17, 2014, 5:40:09 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracDev/CodingStyle
v19 v20 58 58 * Keep as much as possible private, by defining private functions in an inner scope. Attach functions you want to export to the $ symbol. 59 59 * Use a "trac-" prefix for all id and class names. (For new names. Changing old names would break customizations.) 60 * Prefix variables containing a jQuery object with `$`. 60 61 61 62 ----