Twitter Bootstrap Navbar with AngularJS - Collapse Not Functioning

后端 未结 8 1095
夕颜
夕颜 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 05:57

    For those interested - Here is another way of implementing this without Bootstrap's javascript.

    Import Angular's UI-Bootstrap.

    HTML:

    
    

    JS:

    var myApp = angular.module('myApp', ['ui.bootstrap']);
    
    function NavBarCtrl($scope) {
        $scope.isCollapsed = true;
    }
    

    And the fiddle - http://jsfiddle.net/KY5Mf/

提交回复
热议问题