| 12345678910111213 | 
							- /**
 -  * Created by robin on 11/1/15.
 -  */
 - 
 - angular.module('app')
 -     .controller('ToolBarController', ['$scope', '$state', '$mdSidenav', 'DataShareBusiness',
 -         function($scope, $state, $mdSidenav, DataShareBusiness) {
 - 
 -                 $scope.toggleSideBar = function()
 -                 {
 -                     $mdSidenav('left').toggle();
 -                 };
 -         }]);
 
 
  |