kongondo / MenuBuilder

Easily create navigation lists/menus using drag and drop
GNU General Public License v2.0
21 stars 8 forks source link

BS4 Support Pull Request #31

Closed ethanbeyer closed 7 years ago

ethanbeyer commented 7 years ago

I'm building a few sites with Bootstrap 4. I know it's still in Alpha, but the structure of the nav for BS4 requires that there be...

<li class="nav-item">
    <a href="#" class="nav-link">Link</a>
</li>

I was getting tired of adding a fix for this with Javascript client-side, so I added a small bit of functionality to accept a class argument in the $options array.

kongondo commented 7 years ago

Thanks for the PR @ethanbeyer. That BS4 structure can be easily achieved by using the new getMenuItems() method. I'll close this for now.

ethanbeyer commented 7 years ago

awesome! thanks.