Loading lib/jsduck/tag/cfg.rb +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ module JsDuck::Tag :name => :cfg, :category => :property_like, :title => "Config options", :toolbar_title => "Configs", :position => MEMBER_POS_CFG, } end Loading lib/jsduck/tag/css_var.rb +1 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,7 @@ module JsDuck::Tag :name => :css_var, :category => :property_like, :title => "CSS Variables", :toolbar_title => "CSS Vars", :position => MEMBER_POS_CSS_VAR, } end Loading lib/jsduck/tag/tag.rb +4 −1 Original line number Diff line number Diff line Loading @@ -46,13 +46,16 @@ module JsDuck::Tag # :name => :event, # :category => :method_like, # :title => "Events", # :toolbar_title => "Events", // optional # :position => MEMBER_POS_EVENT, # } # # The category must be either :property_like or :method_like. # # Position defines the ordering of member section in final HTML # output. Title is shown at the top of each such section. # output. Title is shown at the top of each such section and also # as a label on Docs app toolbar button unless :toolbar_title is # specified. attr_reader :member_type MEMBER_POS_CFG = 1 Loading template/app/view/cls/Toolbar.js +1 −1 Original line number Diff line number Diff line Loading @@ -72,7 +72,7 @@ Ext.define('Docs.view.cls.Toolbar', { }); if (members.length > 0) { var btn = this.createMemberButton({ text: type.title, text: type.toolbar_title || type.title, type: type.name, members: members }); Loading Loading
lib/jsduck/tag/cfg.rb +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ module JsDuck::Tag :name => :cfg, :category => :property_like, :title => "Config options", :toolbar_title => "Configs", :position => MEMBER_POS_CFG, } end Loading
lib/jsduck/tag/css_var.rb +1 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,7 @@ module JsDuck::Tag :name => :css_var, :category => :property_like, :title => "CSS Variables", :toolbar_title => "CSS Vars", :position => MEMBER_POS_CSS_VAR, } end Loading
lib/jsduck/tag/tag.rb +4 −1 Original line number Diff line number Diff line Loading @@ -46,13 +46,16 @@ module JsDuck::Tag # :name => :event, # :category => :method_like, # :title => "Events", # :toolbar_title => "Events", // optional # :position => MEMBER_POS_EVENT, # } # # The category must be either :property_like or :method_like. # # Position defines the ordering of member section in final HTML # output. Title is shown at the top of each such section. # output. Title is shown at the top of each such section and also # as a label on Docs app toolbar button unless :toolbar_title is # specified. attr_reader :member_type MEMBER_POS_CFG = 1 Loading
template/app/view/cls/Toolbar.js +1 −1 Original line number Diff line number Diff line Loading @@ -72,7 +72,7 @@ Ext.define('Docs.view.cls.Toolbar', { }); if (members.length > 0) { var btn = this.createMemberButton({ text: type.title, text: type.toolbar_title || type.title, type: type.name, members: members }); Loading