My templates bootstrap contain JS, as they are called JS is not executed, you have an idea please.
This is my Index.html
<body ng-app>
<ng-include src="'sidebar.html'"></ng-include>
<ng-include src="'navbar.html'"></ng-include>
</body>
My navbar.html
<header class="navbar navbar-inverse" role="banner">
<button type="button" id="menu-toggler">
...
</button>
in my template library there are - theme.js
$("#menu-toggler").click(function (e) {
$("body").toggleClass("menu");
e.stopPropagation();
});
when in Body element there are 'menu' class, CSS show a sidebar
who know why it doesn't show?? (Demo jsfiddle)