loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: enable `no-jquery/no-sizzle`

Don't rely on Jquery's CSS selector engine.

Gusted 9eb67ba8 dde7c4a7

+2 -2
+1 -1
eslint.config.mjs
··· 376 376 'no-jquery/no-selector-prop': [2], 377 377 'no-jquery/no-serialize': [2], 378 378 'no-jquery/no-size': [2], 379 - 'no-jquery/no-sizzle': [0], 379 + 'no-jquery/no-sizzle': [2], 380 380 'no-jquery/no-slide': [2], 381 381 'no-jquery/no-sub': [2], 382 382 'no-jquery/no-support': [2],
+1 -1
web_src/js/features/comp/ReactionSelector.js
··· 23 23 $react.remove(); 24 24 } 25 25 if (!data.empty) { 26 - const $attachments = $content.find('.segment.bottom:first'); 26 + const $attachments = $content.find('.segment.bottom').first(); 27 27 $react = $(data.html); 28 28 if ($attachments.length > 0) { 29 29 $react.insertBefore($attachments);