Open mattgrande opened 8 years ago
@mattgrande I'm not sure if it would help, but I made some changes to how zf-advise works in the framework (https://github.com/zurb/foundation-apps/pull/741). I've only ever needed to use zf-advise for panels, not modals, so these changes may not fix your issue.
Thanks @soumak77! I'll check that out in awhile!
I have a modal that looks like this:
And I'm subscribed to it like this:
That function gets the
open
,close
, andactive-false
actions. However, it does not get theactive-true
action.After some playing around in the Foundation code, it seems that the
active-true
is trying to be published against the<aside>
tag that gets generated within thezf-modal
, rather than thezf-modal
itself.In my case, I've been able to subscribe to an empty string:
but I can't imagine that's desired behaviour.