blob: 1d95ef9ca0ea2a7c0aa2fc8895d32402dd73583c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import onetime from 'onetime';
import features from '../feature-manager.js';
import {linkifiedURLClass, shortenLink} from '../github-helpers/dom-formatters.js';
import observe from '../helpers/selector-observer.js';
/* This feature is currently so broad that it's not de-inited via signal, it's just run once for all pageloads #5889 */
function init(): void {
observe(`.comment-body a[href]:not(.${linkifiedURLClass})`, shortenLink);
}
void features.add(import.meta.url, {
init: onetime(init),
});
/*
## Test URLs
https://github.com/refined-github/sandbox/pull/14
https://github.com/refined-github/refined-github/pull/473
*/
|