Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix corner case invoker issue with popover nested inside invoker
In this situation: ``` <button popovertarget=foo>Activate <div popover id=foo>Clicking me shouldn't close me</div> </button> ``` clicking the button properly activates the popover, however, clicking on the popover itself after that should **not** close the popover. It currently does because the popover click bubbles to the `<button>` and activates the invoker, which toggles the popover closed. This patch fixes that case.
- Loading branch information