blob: 28338c304040b6a92ce2f97d6ed861168c1d4c05 (
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
|
import './extend-diff-expander.css';
import select from 'select-dom';
import delegate, {DelegateEvent} from 'delegate-it';
import features from '../libs/features';
function expandDiff(event: DelegateEvent): void {
// Skip if the user clicked directly on the icon
if (!(event.target as Element).closest('.js-expand')!) {
select<HTMLAnchorElement>('.js-expand', event.delegateTarget)!.click();
}
}
function init(): void {
delegate('.diff-view', '.js-expandable-line', 'click', expandDiff);
}
features.add({
id: __featureName__,
description: 'Widens the `Expand diff` button to be clickable across the screen.',
screenshot: 'https://user-images.githubusercontent.com/6978877/34470024-eee4f43e-ef20-11e7-9036-65094bd58960.PNG',
include: [
features.isPRFiles,
features.isCommit
],
load: features.onAjaxedPages,
init
});
|