Edgewall Software

Changes between Version 19 and Version 20 of TracDev/CodingStyle


Ignore:
Timestamp:
Jul 17, 2014, 5:40:09 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Refs comment:18:ticket:10994. May be modified based on other developer feedback.

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/CodingStyle

    v19 v20  
    5858* Keep as much as possible private, by defining private functions in an inner scope. Attach functions you want to export to the $ symbol.
    5959* 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 `$`.
    6061
    6162----