Fix issue #523 - "Slider cannot be initialized in iframe"#675
Open
jayelkaake wants to merge 1 commit intoglidejs:masterfrom
Open
Fix issue #523 - "Slider cannot be initialized in iframe"#675jayelkaake wants to merge 1 commit intoglidejs:masterfrom
jayelkaake wants to merge 1 commit intoglidejs:masterfrom
Conversation
stokesman
reviewed
May 18, 2024
Comment on lines
+31
to
+32
| // We are usine duck-typing here because we can't use `instanceof` since if we're in an iframe the class instance will be different. | ||
| if (node && node.appendChild && node.isConnected) { |
There was a problem hiding this comment.
I agree that this seems like a better fix. However, I think it would be possible to avoid duck-typing by using ownerDocument.defaultView. Mostly I'm adding the comment because it seems like ownerDocument and defaultView are oft overlooked features of the DOM.
Suggested change
| // We are usine duck-typing here because we can't use `instanceof` since if we're in an iframe the class instance will be different. | |
| if (node && node.appendChild && node.isConnected) { | |
| if (!node) return false | |
| const nodeWindow = node.ownerDocument?.defaultView | |
| if (nodeWindow && node instanceof nodeWindow.HTMLElement) { |
I’d also probably just return the test nodeWindow && node instanceof nodeWindow.HTMLElement directly and eliminate the following returns but couldn’t do that in the scope of the suggestion.
Member
|
Should be fixed with v3.6.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
How to recreate the issue
Load glide in an iframe
What I Did
I changed the
exist()method to use duck-typing instead of anullcheck.The work that @ericmorand did in pull request #669 did not fully solve the problem, and also sort of makes it possible to pass invalid objects, so was not a preferred solution. Thanks for leading me in the right direction though @ericmorand!
How was it tested
Loaded in iframe and out of iframe.