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

A Template of jsdoc for jaguar.js project

Results 32 jaguarjs-jsdoc issues
Sort by recently updated
recently updated
newest added

Adding "build" command for supporting automation tools like Continuous Integration. It has its own default workspace like in /demo. You can provide it (source files, destination files, config file) with...

Instead of a non-styled dd/dt template, called for each exception, call one template with a table for all exception, using same styles as params: type and description

The information that a function argument is repeatable or nullable was not highlighted. Modified it so it is displayed in the same way like the information that a argument is...

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...

Prevent doclet paths from being shortened twice. Solve: issue #23 (equivalent to jsdoc3/jsdoc#514) Based on: jsdoc3/jsdoc@f958ab0

A navigation bar menu of static class (tagged @class and @static) don't expand. This cause is a mismatch between the class name (ex. aaa.bbb.ccc#Ddd) and the file name (ex. aaa.bbb.ccc_Ddd)...

For example, the following documentation would not allow for navigational differentiation between q and q#b when viewing the overview for each. I.e., if the user is viewing q#b, the menu...

From: ![overflow-icon](https://cloud.githubusercontent.com/assets/1213808/4082387/1b642b22-2ef1-11e4-8c93-9bdd0c82b44a.png) To: ![overflow-fixed](https://cloud.githubusercontent.com/assets/1213808/4082394/34d165e8-2ef1-11e4-8cc9-0ca1f2a582ae.png) Relevant code: ``` javascript /** * @namespace */ var ThisIsALongName = {}; /** * @namespace */ ThisIsALongName.IAmAProperty = {}; /** * @namespace */ ThisIsALongName.anotherprop = {};...

Left sidebar menu don't expend upon clicking class title. Amend main.js to fix ``` // Toggle when click an item element $('.navigation').on('click', '.title', function (e) { e.preventDefault(); $(this).parent().find('.itemMembers').toggle(); }); ```

@typedefs or @global are placed in global.html. But there is no link to it from the nav pane.