我将基础 4 添加到我的流星网络。我用这个包
https://atmosphere.meteor.com/package/foundation
我按照基金会主页Foundation 4上的步骤进行操作
<div id="myModal" class="reveal-modal">
<h2>Awesome. I have it.</h2>
<p class="lead">Your couch. It is mine.</p>
<p>Im a cool paragraph that lives inside of an even cooler modal. Wins</p>
<a class="close-reveal-modal">×</a>
</div>
我添加了链接
<a href="#" data-reveal-id="myModal" class="open radius button">Example Modal…</a>
模态正确打开,但是当我尝试关闭模态时,浏览器被冻结。我测试了将其他事件添加到模式中,例如仅执行控制台日志的链接,并且也被冻结。看起来我不能在模式中使用事件......关于如何关闭模式并向其中添加事件的任何想法?
谢谢