Twitter Bootstrap Navbar with AngularJS - Collapse Not Functioning

后端 未结 8 1076
夕颜
夕颜 2020-12-02 05:33

I am using Angular and Twitter Bootstrap navbar and trying to get the collapse functionality to work.

Partial: program.html

8条回答
  •  無奈伤痛
    2020-12-02 06:05

    I feel that this will be simple JS fix:

    //for close, opened dropdown.
    $(".nav a").click(function () {
        if ($(".navbar-collapse").hasClass("in")) {
            $('[data-toggle="collapse"]').click();
        }
    });
    

    If this code is not working correctly then see that it's binding correctly, so place it in controller that loads page.

提交回复
热议问题