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:
James Strachan
2012-04-16 09:42:30 +01:00
parent 900c7b47ba
commit 4de778c6d6
5 changed files with 68 additions and 16 deletions
@@ -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;
}
}