Features
- Outlines JavaScript codeblock regions for the code placed between { }. The closing brace is places on a new line and there is not another opeing brace on same line.
- Outlines custom regions defined by:
- //#region - //#endregion
- //#> - //#<
Samples
Artem.Google.Map = function Artem_Google_Map(element) {
/// <summary>This class represents the client GoogleMap control object.</summary>
/// <field name="_mapEvents" type="Array"></field>
Artem.Google.Map.initializeBase(this, [element]);
}
- long custom region definition
//#region long region
your content here between ...
//#endregion
- short custom region definition
//#> short region
your content here between ...
//#<
|