blob: bc4f4884de9b90342ed474018a2508d7afab34c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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,
],
exclude: [
pageDetect.isRepoFile404,
],
deduplicate: 'has-rgh',
awaitDomReady: true, // Small page
init,
});
/*
Test URLs:
https://github.com/wmluke/angular-flash/blob/0.1.14/app/components
*/
|