├── .gitignore ├── README.md ├── app.modules.js ├── app.routes.js ├── bower.json ├── controllers └── home.controller.js ├── css └── style.css ├── directives ├── menu_toggle.directive.js └── menulink.directive.js ├── index.html ├── services └── menu.service.js └── views ├── beers.ipas.view.html ├── beers.porters.view.html ├── beers.wheat.view.html ├── gettingstarted.view.html └── home.view.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | /bower_components 4 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/README.md -------------------------------------------------------------------------------- /app.modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/app.modules.js -------------------------------------------------------------------------------- /app.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/app.routes.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/bower.json -------------------------------------------------------------------------------- /controllers/home.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/controllers/home.controller.js -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/css/style.css -------------------------------------------------------------------------------- /directives/menu_toggle.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/directives/menu_toggle.directive.js -------------------------------------------------------------------------------- /directives/menulink.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/directives/menulink.directive.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/index.html -------------------------------------------------------------------------------- /services/menu.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/services/menu.service.js -------------------------------------------------------------------------------- /views/beers.ipas.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/views/beers.ipas.view.html -------------------------------------------------------------------------------- /views/beers.porters.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/views/beers.porters.view.html -------------------------------------------------------------------------------- /views/beers.wheat.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/views/beers.wheat.view.html -------------------------------------------------------------------------------- /views/gettingstarted.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/views/gettingstarted.view.html -------------------------------------------------------------------------------- /views/home.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/britztopher/angular-material-side-menu/HEAD/views/home.view.html --------------------------------------------------------------------------------