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