I'd like to display a dialogue when a user clicks out of the DOM object that holds my app.
I was thinking, I'd just put a one time click event on all parents and then trigger the dialogue with that.
Because the DOM object that I'm getting the parent's for is included, it's triggering the dialogue even when the object it's self is clicked.
I want to, in essence, punch a hole in the parents to exclude the DOM that the user is interacting with.
I was thinking mouseleave and then click any other dom object would work.
Any suggestions?