Functional directives TS
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
/* @ngInject */
|
||||
export function clickOutside($document: ng.IDocumentService) {
|
||||
return {
|
||||
restrict: 'A',
|
||||
replace: false,
|
||||
link: function ($scope: ng.IScope, $element: JQLite, attrs: any) {
|
||||
// Causes memory leak as-is:
|
||||
// let didApplyClickOutside = false;
|
||||
|
||||
// $scope.$on('$destroy', () => {
|
||||
// attrs.clickOutside = null;
|
||||
// $element.unbind('click', $scope.onElementClick);
|
||||
// $document.unbind('click', $scope.onDocumentClick);
|
||||
// $scope.onElementClick = null;
|
||||
// $scope.onDocumentClick = null;
|
||||
// });
|
||||
|
||||
// $scope.onElementClick = (event) => {
|
||||
// didApplyClickOutside = false;
|
||||
// if (attrs.isOpen) {
|
||||
// event.stopPropagation();
|
||||
// }
|
||||
// };
|
||||
|
||||
// $scope.onDocumentClick = (event) => {
|
||||
// /* Ignore click if on SKAlert */
|
||||
// if (event.target.closest('.sk-modal')) {
|
||||
// return;
|
||||
// }
|
||||
// if (!didApplyClickOutside) {
|
||||
// $scope.$apply(attrs.clickOutside);
|
||||
// didApplyClickOutside = true;
|
||||
// }
|
||||
// };
|
||||
|
||||
// $element.bind('click', $scope.onElementClick);
|
||||
// $document.bind('click', $scope.onDocumentClick);
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user