forked from yalabot/angular-foundation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
offcanvas.js
81 lines (74 loc) · 2.5 KB
/
offcanvas.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
70
71
72
73
74
75
76
77
78
79
80
81
angular.module("mm.foundation.offcanvas", [])
.directive('offCanvasWrap', ['$window', function ($window) {
return {
scope: {},
restrict: 'C',
link: function ($scope, element, attrs) {
var win = angular.element($window);
var sidebar = $scope.sidebar = element;
$scope.hide = function () {
sidebar.removeClass('move-left');
sidebar.removeClass('move-right');
};
win.bind("resize.body", $scope.hide);
$scope.$on('$destroy', function() {
win.unbind("resize.body", $scope.hide);
});
},
controller: ['$scope', function($scope) {
this.leftToggle = function() {
$scope.sidebar.toggleClass("move-right");
};
this.rightToggle = function() {
$scope.sidebar.toggleClass("move-left");
};
this.hide = function() {
$scope.hide();
};
}]
};
}])
.directive('leftOffCanvasToggle', [function () {
return {
require: '^offCanvasWrap',
restrict: 'C',
link: function ($scope, element, attrs, offCanvasWrap) {
element.on('click', function () {
offCanvasWrap.leftToggle();
});
}
};
}])
.directive('rightOffCanvasToggle', [function () {
return {
require: '^offCanvasWrap',
restrict: 'C',
link: function ($scope, element, attrs, offCanvasWrap) {
element.on('click', function () {
offCanvasWrap.rightToggle();
});
}
};
}])
.directive('exitOffCanvas', [function () {
return {
require: '^offCanvasWrap',
restrict: 'C',
link: function ($scope, element, attrs, offCanvasWrap) {
element.on('click', function () {
offCanvasWrap.hide();
});
}
};
}])
.directive('offCanvasList', [function () {
return {
require: '^offCanvasWrap',
restrict: 'C',
link: function ($scope, element, attrs, offCanvasWrap) {
element.on('click', function () {
offCanvasWrap.hide();
});
}
};
}]);