blob: 6f1c691a1c4a4fc92afed908dd431d7704796130 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import select from 'select-dom';
import features from '../libs/features';
function init(): void {
select('.subnav-search')!.setAttribute('autocomplete', 'off');
}
features.add({
id: __featureName__,
description: 'The autocomplete on the issue search field is removed',
include: [
features.isDiscussionList
],
load: features.onAjaxedPages,
init
});
|