angular-docs-cn/public/resources/js/controllers/app-controller.js

37 lines
817 B
JavaScript
Raw Normal View History

2015-05-01 09:48:52 -04:00
/*
* Apllication Controller
*
*/
angularIO.controller('AppCtrl', ['$scope', '$mdDialog', '$timeout', function($scope, $mdDialog, $timeout) {
2015-05-01 09:48:52 -04:00
$scope.showDocsNav = false;
$scope.showMainNav = false;
$scope.showMenu = false;
// TOGGLE MAIN NAV (TOP) ON MOBILE
$scope.toggleDocsMenu = function(event) {
event.preventDefault();
$scope.showDocsNav = !$scope.showDocsNav;
};
// TOGGLE DOCS NAV
$scope.toggleMainMenu = function(event) {
event.preventDefault();
$scope.showMainNav = !$scope.showMainNav;
};
// TOGGLE DOCS VERSION & LANGUAGE
$scope.toggleVersionMenu = function(event) {
event.preventDefault();
$scope.showMenu = !$scope.showMenu;
};
/*
* Prettify Code
*
* Finish Rendereding code directives then prettify code
*/
$timeout(prettyPrint, 1);
2015-05-01 09:48:52 -04:00
}]);