Fix typo 'runInIframes' (#918)

'runInIframes' appears to be a typo.
(https://github.com/webrecorder/custom-behaviors/blob/main/behaviors/timeline.js
example)
This commit is contained in:
hexagonwin 2025-11-26 12:19:01 +09:00 committed by GitHub
parent b9b804e660
commit 9cd2d393bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.