您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

toolbar.controller.js 372B

12345678910111213
  1. /**
  2. * Created by robin on 11/1/15.
  3. */
  4. angular.module('app')
  5. .controller('ToolBarController', ['$scope', '$state', '$mdSidenav', 'DataShareBusiness',
  6. function($scope, $state, $mdSidenav, DataShareBusiness) {
  7. $scope.toggleSideBar = function()
  8. {
  9. $mdSidenav('left').toggle();
  10. };
  11. }]);