davidshimjs / jaguarjs-jsdoc

A Template of jsdoc for jaguar.js project
MIT License
218 stars 136 forks source link

Show modules in navigation list #27

Open malps13 opened 10 years ago

malps13 commented 10 years ago

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";
}