blob: cfcea8055581f1ab60169a1978d6061998f68a1d (
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
34
|
import './clean-rich-text-editor.css';
import select from 'select-dom';
import features from '../libs/features';
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 = '';
}
}
features.add({
id: __featureName__,
description: 'Hides unnecessary comment field tooltips and toolbar items.',
screenshot: 'https://user-images.githubusercontent.com/1402241/53629083-a4fe8900-3c47-11e9-8211-bfe2d254ffcb.png',
include: [
features.hasRichTextEditor
],
load: features.onAjaxedPages,
init: hideTextareaTooltip
});
features.add({
id: __featureName__,
description: '',
screenshot: '',
include: [
features.isRepo
],
init: hideButtons
});
|