Loading lib/jsduck/search_data.rb +4 −0 Original line number Diff line number Diff line Loading @@ -43,6 +43,7 @@ module JsDuck :type => :class, :icon => :subclass, :id => cls.full_name, :private => cls[:private], :sort => 0, } end Loading @@ -55,6 +56,7 @@ module JsDuck :type => :class, :icon => :class, :id => cls.full_name, :private => cls[:private], :sort => 1, } end Loading @@ -67,6 +69,7 @@ module JsDuck :type => :class, :icon => :subclass, :id => cls.full_name, :private => cls[:private], :sort => 2, } end Loading @@ -79,6 +82,7 @@ module JsDuck :type => :member, :icon => member[:tagname], :id => cls.full_name + "-" + member[:id], :private => member[:private], :sort => 3, } end Loading template/app/store/Search.js +1 −1 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ Ext.define('Docs.store.Search', { extend: 'Ext.data.Store', fields: ['cls', 'member', 'type', 'icon', 'id', 'sort'], fields: ['cls', 'member', 'type', 'icon', 'id', 'private', 'sort'], proxy: { type: 'memory', reader: { Loading template/app/view/search/Dropdown.js +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ Ext.define('Docs.view.search.Dropdown', { '<tpl for=".">', '<div class="item">', '<div class="icon icon-{icon}"></div>', '<div class="title">{member}</div>', '<div class="title {[values.private ? "private" : ""]}">{member}</div>', '<div class="class">{cls}</div>', '</div>', '</tpl>', Loading template/resources/sass/_header.scss +3 −1 Original line number Diff line number Diff line Loading @@ -87,7 +87,9 @@ .title { font-weight: bold; overflow: hidden; text-overflow: ellipsis; } text-overflow: ellipsis; &.private { color: gray; } } .class { font-size: 0.85em; overflow: hidden; Loading Loading
lib/jsduck/search_data.rb +4 −0 Original line number Diff line number Diff line Loading @@ -43,6 +43,7 @@ module JsDuck :type => :class, :icon => :subclass, :id => cls.full_name, :private => cls[:private], :sort => 0, } end Loading @@ -55,6 +56,7 @@ module JsDuck :type => :class, :icon => :class, :id => cls.full_name, :private => cls[:private], :sort => 1, } end Loading @@ -67,6 +69,7 @@ module JsDuck :type => :class, :icon => :subclass, :id => cls.full_name, :private => cls[:private], :sort => 2, } end Loading @@ -79,6 +82,7 @@ module JsDuck :type => :member, :icon => member[:tagname], :id => cls.full_name + "-" + member[:id], :private => member[:private], :sort => 3, } end Loading
template/app/store/Search.js +1 −1 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ Ext.define('Docs.store.Search', { extend: 'Ext.data.Store', fields: ['cls', 'member', 'type', 'icon', 'id', 'sort'], fields: ['cls', 'member', 'type', 'icon', 'id', 'private', 'sort'], proxy: { type: 'memory', reader: { Loading
template/app/view/search/Dropdown.js +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ Ext.define('Docs.view.search.Dropdown', { '<tpl for=".">', '<div class="item">', '<div class="icon icon-{icon}"></div>', '<div class="title">{member}</div>', '<div class="title {[values.private ? "private" : ""]}">{member}</div>', '<div class="class">{cls}</div>', '</div>', '</tpl>', Loading
template/resources/sass/_header.scss +3 −1 Original line number Diff line number Diff line Loading @@ -87,7 +87,9 @@ .title { font-weight: bold; overflow: hidden; text-overflow: ellipsis; } text-overflow: ellipsis; &.private { color: gray; } } .class { font-size: 0.85em; overflow: hidden; Loading