kdoc now has working interactive search of classes, functions, properties e.g. "map()" or "fun map" or "class Foo" etc
This commit is contained in:
@@ -13,7 +13,7 @@ $(function(){
|
||||
success: function( xmlResponse ) {
|
||||
var data = $( "search", xmlResponse ).map(function() {
|
||||
return {
|
||||
value: $( "name", this ).text(),
|
||||
value: $( "kind", this ).text() + " " + $( "name", this ).text(),
|
||||
id: $( "href", this ).text()
|
||||
};
|
||||
}).get();
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
.ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
|
||||
|
||||
.ui-autocomplete {
|
||||
max-height: 100px;
|
||||
max-height: 500px;
|
||||
overflow-y: auto;
|
||||
/* prevent horizontal scrollbar */
|
||||
overflow-x: hidden;
|
||||
@@ -88,9 +88,9 @@
|
||||
* we use height instead, but this forces the menu to always be this tall
|
||||
*/
|
||||
* html .ui-autocomplete {
|
||||
height: 100px;
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
.NavBarCell1 label {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user