@@ -212,8 +212,14 @@ function filter_pkgs_list(filter_ele, tbody_ele) {
212
212
rows = rows . has ( '.incomplete' ) ;
213
213
}
214
214
/* hide all rows, then show the set we care about */
215
- all_rows . hide ( ) ;
216
- rows . show ( ) ;
215
+ // note that we don't use .hide() from jQuery because it adds display:none
216
+ // which is very expensive to query in CSS ([style*="display: none"])
217
+ all_rows . each ( function ( ) {
218
+ $ ( this ) . attr ( 'hidden' , true ) ;
219
+ } ) ;
220
+ rows . each ( function ( ) {
221
+ $ ( this ) . removeAttr ( 'hidden' ) ;
222
+ } ) ;
217
223
$ ( '#filter-count' ) . text ( rows . length ) ;
218
224
/* make sure we update the odd/even styling from sorting */
219
225
$ ( '.results' ) . trigger ( 'applyWidgets' , [ false ] ) ;
@@ -330,8 +336,14 @@ function filter_signoffs() {
330
336
rows = rows . has ( 'td.signoff-no' ) ;
331
337
}
332
338
/* hide all rows, then show the set we care about */
333
- all_rows . hide ( ) ;
334
- rows . show ( ) ;
339
+ // note that we don't use .hide() from jQuery because it adds display:none
340
+ // which is very expensive to query in CSS ([style*="display: none"])
341
+ all_rows . each ( function ( ) {
342
+ $ ( this ) . attr ( 'hidden' , true ) ;
343
+ } ) ;
344
+ rows . each ( function ( ) {
345
+ $ ( this ) . removeAttr ( 'hidden' ) ;
346
+ } ) ;
335
347
$ ( '#filter-count' ) . text ( rows . length ) ;
336
348
/* make sure we update the odd/even styling from sorting */
337
349
$ ( '.results' ) . trigger ( 'applyWidgets' , [ false ] ) ;
0 commit comments