blob: 527a52eaed41edd604fcbe16edd5e0db79db1f8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import {wrap} from '../helpers/dom-utils.js';
import features from '../feature-manager.js';
function init(): void {
if (select('.file-mode')?.textContent === 'symbolic link') {
const line = select('.js-file-line')!;
wrap(line.firstChild!, <a href={line.textContent!} data-turbo-frame="repo-content-turbo-frame"/>);
}
}
void features.add(import.meta.url, {
include: [
pageDetect.isSingleFile,
],
deduplicate: 'has-rgh',
awaitDomReady: true, // Small page
init,
});
|