Despite my efforts, I am unable to get my md-sidenav to open when clicking the burger-icon. I have checked for log messages and even created a simple sayHi
function that does not output anything to the console. There are no visible JS errors either. My code is based on the codepen provided in the Angular-Material documentation. You can view my implementation here.
HTML
<script src="https://code.jquery.com/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
// HTML code snippet goes here
Angular
// Angular code snippet goes here
angular
.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache'])
.controller('AppCtrl', function($scope, $timeout, $mdSidenav, $log) {
// Controller logic
}).controller('LeftCtrl', function($scope, $timeout, $mdSidenav, $log) {
// Left controller logic
});
CSS
// CSS styles go here
.analysis {
display: flex;
flex-direction: column;
height: 100%;
}
// More CSS styles below...