File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ $(document).ready(function() {
273
273
// Search box autocomplete.
274
274
jQuery ( "#topsearch .search-query" ) . search ( {
275
275
language : getLanguage ( ) ,
276
- limit : 3
276
+ limit : 30
277
277
} ) ;
278
278
279
279
/* {{{ Negative user notes fade-out */
Original file line number Diff line number Diff line change 118
118
var element = this ;
119
119
120
120
options . language = options . language || "en" ;
121
- options . limit = options . limit || 10 ;
121
+ options . limit = options . limit || 30 ;
122
122
123
123
/**
124
124
* Utility function to check if the user's browser supports local
177
177
var tokens = [ item [ 0 ] ] ;
178
178
var type = null ;
179
179
180
+ if ( item [ 0 ] . indexOf ( "_" ) != - 1 ) {
181
+ tokens . push ( item [ 0 ] . replace ( "_" , "" ) ) ;
182
+ }
183
+
180
184
if ( item [ 1 ] . match ( / ^ f u n c t i o n \. / ) ) {
181
185
type = "function" ;
182
186
} else if ( item [ 0 ] . indexOf ( "::" ) != - 1 ) {
Original file line number Diff line number Diff line change @@ -1104,6 +1104,8 @@ fieldset {
1104
1104
1105
1105
.tt-suggestions {
1106
1106
color : # ccc ;
1107
+ overflow : scroll;
1108
+ max-height : 210px ;
1107
1109
}
1108
1110
1109
1111
.tt-dropdown-menu .search {
You can’t perform that action at this time.
0 commit comments