-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainMenu.js
69 lines (58 loc) · 1.68 KB
/
MainMenu.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
var app = angular.module("demo", []);
app.run(function($rootScope) {
document.addEventListener("keyup", function(e) {
if (e.keyCode === 27)
$rootScope.$broadcast("escapePressed", e.target);
});
document.addEventListener("click", function(e) {
$rootScope.$broadcast("documentClicked", e.target);
});
});
app.controller("sidebar-controller", function($scope, $rootScope) {
$scope.leftVisible = false;
$scope.close = function() {
$scope.leftVisible = false;
};
$scope.showLeft = function(e) {
$scope.leftVisible = true;
e.stopPropagation();
};
$rootScope.$on("documentClicked", _close);
$rootScope.$on("escapePressed", _close);
function _close() {
$scope.$apply(function() {
$scope.close();
});
}
});
app.directive("menu", function() {
return {
restrict: "E",
template: "<div ng-class='{ show: visible, left: alignment === \"left\"}' ng-transclude></div>",
transclude: true,
scope: {
visible: "=",
alignment: "@"
}
};
});
app.directive("menuItem", function() {
return {
restrict: "E",
template: "<div ng-click='navigate()' ng-transclude></div>",
transclude: true,
scope: {
hash: "@"
},
link: function($scope) {
$scope.navigate = function() {
window.location.hash = $scope.hash;
};
}
};
});