From 9cd2d393bcd7d06767ea13ce0605cc5102e4eeb5 Mon Sep 17 00:00:00 2001 From: hexagonwin Date: Wed, 26 Nov 2025 12:19:01 +0900 Subject: [PATCH] Fix typo 'runInIframes' (#918) 'runInIframes' appears to be a typo. (https://github.com/webrecorder/custom-behaviors/blob/main/behaviors/timeline.js example) --- docs/docs/user-guide/behaviors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/user-guide/behaviors.md b/docs/docs/user-guide/behaviors.md index f585ef18..f77063d1 100644 --- a/docs/docs/user-guide/behaviors.md +++ b/docs/docs/user-guide/behaviors.md @@ -143,7 +143,7 @@ class MyBehavior // optional: if true, will also check isMatch() and possibly run // this behavior in each iframe. // if false, or not defined, this behavior will be skipped for iframes. - static runInIframes = false; + static runInIframe = false; // optional: if defined, provides a way to define a custom way to determine // when a page has finished loading beyond the standard 'load' event.