blob: f28ff9836229bb04524a6acc0ceece24dd0569b3 (
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
|
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import {wrap} from '../helpers/dom-utils';
import features from '.';
function init(): void {
const element = select('.sha.user-select-contain');
if (element) {
wrap(element, <a href={location.pathname.replace(/pull\/\d+\/commits/, 'commit')}/>);
}
}
void features.add({
id: __filebasename,
description: 'Adds link to non-PR commit when visiting a PR commit.',
screenshot: 'https://user-images.githubusercontent.com/101152/42968387-606b23f2-8ba3-11e8-8a4b-667bddc8d33c.png'
}, {
include: [
pageDetect.isPRCommit
],
init
});
|