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 bc283a7 commit 6e7cdd5Copy full SHA for 6e7cdd5
packages/injected/src/recorder/recorder.ts
@@ -640,6 +640,15 @@ class JsonRecordActionTool implements RecorderTool {
640
this._recorder = recorder;
641
}
642
643
+ install() {
644
+ // No highlight for the lightweight recorder.
645
+ this._recorder.highlight.uninstall();
646
+ }
647
+
648
+ uninstall() {
649
+ this._recorder.highlight.install();
650
651
652
onClick(event: MouseEvent) {
653
// in webkit, sliding a range element may trigger a click event with a different target if the mouse is released outside the element bounding box.
654
// So we check the hovered element instead, and if it is a range input, we skip click handling
0 commit comments