blob: 008097c3ff5c14da7547819582f3f063f4e0afce [file] [log] [blame]
window.angular && (function(angular) {
'use strict';
angular.module('app.common.directives')
.directive('toggleFlag', function($document) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
function elementClick(e) {
e.stopPropagation();
}
function documentClick(e) {
scope[attrs.toggleFlag] = false;
scope.$apply();
}
element.on('click', elementClick);
$document.on('click', documentClick);
// remove event handlers when directive is destroyed
scope.$on('$destroy', function() {
element.off('click', elementClick);
$document.off('click', documentClick);
});
}
};
});
})(window.angular);