Skip to content

Commit d411d61

Browse files
Improved performance while using FF Scouter in some cases.
1 parent cb30626 commit d411d61

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extension/changelog.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
{
1313
"message": "Opening a mini profile while on a profile no longer results in the FF Scouter being shown on the profile.",
1414
"contributor": "DeKleineKobini"
15-
}
15+
},
16+
{ "message": "Improved performance while using FF Scouter in some cases.", "contributor": "DeKleineKobini" }
1617
],
1718
"changes": [{ "message": "Better optimize calls to tornpal.", "contributor": "DeKleineKobini" }],
1819
"removed": []

extension/scripts/features/ff-scouter/ttFFScouterGauge.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
new MutationObserver(function () {
3636
if (!feature.enabled()) return;
3737

38-
triggerGauge();
38+
setTimeout(triggerGauge);
3939
}).observe(document, { attributes: false, childList: true, characterData: false, subtree: true });
4040
}
4141

0 commit comments

Comments
 (0)