Stop click propagation from Ember action?
Try to modify the action:
modalOpen: function {
//code of your action
return false;
}
This worked for me in a similar situation
Also you can add bubbles=false
parameter to action
tag. See the API documentation for how to configure event propagation.