[Jsdoc-user] JSDoc 1.9.7 Constants
Status: Inactive
Brought to you by:
mmathews
From: Max d'A. <ma...@da...> - 2005-12-21 18:03:55
|
Hello Gabriel. Looking at the latest 1.9.7 version I noticed the following minor error with stylesheet.css: /* Font used in left-hand frame lists */ .FrameTitleFont { font-size: 10pts; font-family: Helvetica, Arial, san-serif } .FrameHeadingFont { font-size: 10pts; font-family: Helvetica, Arial, san-serif } .FrameItemFont { font-size: 10pts; font-family: Helvetica, Arial, san-serif } the font-size should be "pt" rather than "pts". ================================================= Looking at Constant value I have a couple of questions. 1. It would be nice if there was a link in the bottom left window showing "All Classes" to the "Constant Field Values" page. At the moment the only way I can find of getting there is to find a constant value and then click on the link to the page. 2. When prototype properties are flagged as "@final" they don't show up on the Constant Field Values page. Here is an example. function MyObject() { // Constructor function. } /** Constant prototype number, value = 10. This doesn't get documented on the Constants page, although the Field Details do have a link to the Constant Field Values page. @final */ MyObject.prototype.constant_prototype_number = 10; /** Constant number, value = 20. This gets documented in the Constant Field Values page. @final */ MyObject.constant_number = 20; Regards Max |