Community
Participate
Working Groups
Build id: 3.6M7 Using @param {boolean}, instead of {Boolean} in function jsdoc causes that it's missing from content assist. Altough it's still displayed eg in outline. case 1: /** * @param {Boolean} options (optional) * @member Ext */ Ext.onReady = function (options){ }; Ext.| <--- press Ctrl+Space here. Note that onReady appears on the list case 2: /** * @param {boolean} options (optional) * @member Ext */ Ext.onReady = function (options){ }; Ext.| <--- press Ctrl+Space here. Note that onReady doesn't appear on the list
*** This bug has been marked as a duplicate of bug 278172 ***