MCPcopy Index your code
hub / github.com/refined-github/refined-github / findFeatureHandler

Function findFeatureHandler

source/options.tsx:26–36  ·  view source on GitHub ↗
(this: HTMLButtonElement)

Source from the content-addressed store, hash-verified

24const {version} = chrome.runtime.getManifest();
25
26async function findFeatureHandler(this: HTMLButtonElement): Promise<void> {
27 // TODO: Add support for GHE
28 await startFeatureIdentification();
29
30 this.disabled = true;
31 setTimeout(() => {
32 this.disabled = false;
33 }, 10_000);
34
35 $('#find-feature-message').hidden = false;
36}
37
38let hasScrolledToTarget = false;
39

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected