Documentation page popup bug
See original GitHub issueIn the documentation page for popup browse to any popup, it works fine. Now open the code for it <>
symbol for any example, then the popup does not show up for the same. Even after you close the shown code.
Is that suppose to happen?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:6 (1 by maintainers)
Top Results From Across the Web
My Popup Won't Work - How Can I Fix It?
Overview Fixing a popup that won't display, or no longer displays can be complicated. It requires helpful tools, and a systematic approach ...
Read more >Remove unwanted ads, pop-ups & malware - Google Support
Your browsing is hijacked, and redirects to unfamiliar pages or ads; Alerts about a virus or an infected device. In the future, avoid...
Read more >Pop Up Maker – Not Working or Loading Pop UP
I have created a couple of pop-up and loved user interface but none of my pop-ups seems to be working or loading… Please...
Read more >Changing the Pop-up Blocker Settings in Chrome, Firefox, or ...
Changing the Pop-up Blocker Settings in Chrome, Firefox, or Internet Explorer ... Under "Pop-ups," select an option: Do not allow any site to...
Read more >[BUG] TimeoutError always raised when handling popup ...
At one step, I used the snippet from https://playwright.dev/python/docs/pages#handling-popups to trigger and handle popup pages.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi!
This seems to be an issue with the property “observeChanges: true” - it seems that some changes in the DOM trigger the Event-Handler and so Eventlistener will destroy the Popup. If you just change something in the DOM the popup-element may be destroyed and not be automatically rebuild.
Workaround: Create your Popups with “observeChanges: false” - this will solve the problem and should probably be the default setting.
This should probably be the default behaviour, especially for popups with “inline: true” or a template in the DOM, since automatic destruction is usually not needed.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions.