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 cb9f711 commit d22244cCopy full SHA for d22244c
lib/firequery-actor.js
@@ -27,7 +27,10 @@ const OBJECT_PREVIEW_MAX_ITEMS = 10;
27
28
// Elements with modified data are sent in chunks after timeout
29
// to remove possible duplicates and optimize RDP traffic.
30
-const DATAMODIFIED_TIMEOUT = 1000;
+// 700 milliseconds is relatively big timeout, but JS heavy pages
31
+// might generated a lot of mutations. Let's wait for user feedback
32
+// before we make the timeout smaller.
33
+const DATAMODIFIED_TIMEOUT = 700;
34
35
// For debugging purposes. Note that the tracing module isn't available
36
// on the backend (in case of remote device debugging).
0 commit comments