jaguarjs-jsdoc icon indicating copy to clipboard operation
jaguarjs-jsdoc copied to clipboard

Show modules in navigation list

Open malps13 opened this issue 11 years ago • 0 comments

As pointed in #25 modules are not shown in navigation panel on the left, so basically it is currently not possible to browse through documentation of a module with some loose functions inside. This PR makes such docs visible in the panel:

/** @module Helpers */

/** 
 * This is only a sample function.
 * @method
 * @return {String}
 */
function getSomething() {
    return "sth";
}

malps13 avatar Oct 21 '14 19:10 malps13