I'm trying to get my Javascript documentation in order so that my comments can be used by Intellisense), for example
displayResults = function(msg, filterParams) {
/// <summary>
/// Gathers inputs and refreshes the grid and map
/// </summary>
/// <param name="msg">JSON data returned by GetConcessions ajax call</param>
/// <param name="filterParams">JSON parameters that were originally passed to GetConcessions ajax call</param>
...
}
In VB, I use GhostDoc to make the process of adding structured comments easier. Is there anything like that to make my life easier in Javascript?