blob: f10628a06947130bbb94d1e394150b999fe64b8d (
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 './clean-rich-text-editor.css';
import select from 'select-dom';
import onetime from 'onetime';
import * as pageDetect from 'github-url-detection';
import features from '.';
function hideButtons(): void {
document.body.classList.add('rgh-clean-rich-text-editor');
}
function hideTextareaTooltip(): void {
for (const textarea of select.all('.comment-form-textarea')) {
textarea.title = '';
}
}
void features.add({
id: __filebasename,
description: 'Hides unnecessary comment field tooltips and toolbar items.',
screenshot: 'https://user-images.githubusercontent.com/1402241/53629083-a4fe8900-3c47-11e9-8211-bfe2d254ffcb.png'
}, {
include: [
pageDetect.hasRichTextEditor
],
init: hideTextareaTooltip
}, {
include: [
pageDetect.isRepo
],
waitForDomReady: false,
init: onetime(hideButtons)
});
|