I just visited this page http://www.elmastudio.de/ and wondered if it is possible to build the left sidebar collapse with Bootstrap 3.
Code to collapse the sidebar f
Via Angular: using ng-class of Angular, we can hide and show the side bar.
ng-class
http://jsfiddle.net/DVE4f/359/
Sidebar Sidebar Toggle
.
function AppCtrl($scope) { $scope.showgraphSidebar = false; $scope.toggle = function() { $scope.showgraphSidebar = !$scope.showgraphSidebar; } }