blob: d2212c755be6e730e63def67f79f8ad3d7290325 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import './monospace-textareas.css';
import onetime from 'onetime';
import features from '.';
function init(): void {
document.body.classList.add('rgh-monospace-textareas');
}
void features.add({
id: __filebasename,
description: 'Use a monospace font for all textareas.',
screenshot: false
}, {
waitForDomReady: false,
init: onetime(init)
});
|