aboutsummaryrefslogtreecommitdiff
path: root/src/content/components/top-content/find.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/components/top-content/find.js')
-rw-r--r--src/content/components/top-content/find.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/content/components/top-content/find.js b/src/content/components/top-content/find.js
index bccf040..9967d36 100644
--- a/src/content/components/top-content/find.js
+++ b/src/content/components/top-content/find.js
@@ -38,6 +38,10 @@ export default class FindComponent {
window.document,
'Pattern not found: ' + state.keyword);
}
+ consoleFrames.postInfo(
+ window.document,
+ 'Pattern found: ' + state.keyword,
+ );
return this.store.dispatch(findActions.next(state.keyword, false));
}
@@ -49,6 +53,10 @@ export default class FindComponent {
window.document,
'Pattern not found: ' + state.keyword);
}
+ consoleFrames.postInfo(
+ window.document,
+ 'Pattern found: ' + state.keyword,
+ );
return this.store.dispatch(findActions.prev(state.keyword, false));
}
}