meteor-foundation icon indicating copy to clipboard operation
meteor-foundation copied to clipboard

Nav-menus don't close

Open nkoren opened this issue 11 years ago • 4 comments

This may actually be a bug with Foundation itself rather than your package, but in the previous version, top bar nav-menus would close when their link is clicked on. Now, they stay open, which is rather awkward.

nkoren avatar Oct 20 '14 22:10 nkoren

Hmm... I'm not able to replicate this problem. However, I just updated the Foundation version to 5.4.7 today, perhaps that will help in your case?

ewall avatar Nov 01 '14 21:11 ewall

@nkoren -- I know I'm digging up the past now, but I'm curious if you were able to solve this? I think it might be time to close out this issue since it doesn't seem to be affecting others nor related to this package specifically... Thanks!

ewall avatar Aug 13 '15 00:08 ewall

@ewall I am experiencing a similar issue with dropdowns.

I made a clean meteor app to test this out. When I added this piece of code from http://foundation.zurb.com/docs/components/dropdown_buttons.html#

<button href="#" data-dropdown="drop1" aria-controls="drop1" aria-expanded="false" class="button dropdown">Dropdown Button</button><br>
<ul id="drop1" data-dropdown-content class="f-dropdown" aria-hidden="true">
  <li><a href="#">This is a link</a></li>
  <li><a href="#">This is another</a></li>
  <li><a href="#">Yet another</a></li>
</ul>

Clicking on any of those dropdown options did not close the dropdown.

hashwin avatar Aug 23 '15 07:08 hashwin

Turns out it was because an old version of Foundation was being loaded from the method you describe in your Readme (mrt add foundation)

Adding it using the meteor add ewall:foundation works!

hashwin avatar Aug 23 '15 09:08 hashwin