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/