blob: 09e1893a564bfcd0c76d63a35679ba480b7bb19b (
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
|
import select from 'select-dom';
import features from '../libs/features';
import * as pageDetect from '../libs/page-detect';
import {getRepoURL} from '../libs/utils';
function init(): false | void {
const uploadFilesButton = select(`.file-navigation a[href^="/${getRepoURL()}/upload"]`);
if (!uploadFilesButton) {
return false;
}
uploadFilesButton.remove();
}
features.add({
id: __filebasename,
description: 'Remove the "Upload files" button',
screenshot: false
}, {
include: [
pageDetect.isRepoTree
],
repeatOnAjax: false,
init
});
|