We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb54e4a commit d30a925Copy full SHA for d30a925
src/content/content.ts
@@ -16,10 +16,10 @@ module Content {
16
public constructor() {
17
this.span.className = "__regexp_search_count";
18
19
- this.span.addEventListener('mouseover', function(event) {
+ this.span.addEventListener('mouseover', (event) => {
20
this.span.style.opacity = "0";
21
});
22
- this.span.addEventListener('mouseout', function(event) {
+ this.span.addEventListener('mouseout', (event) => {
23
this.span.style.opacity = "1";
24
25
}
0 commit comments