/** * Nextcloud - News * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. * * @author Marco Nassabain * @author Nicolas Wendling * @author Jimmy Huynh * @author Aurélien David */ app.directive('clickOutside', function ($document) { 'use strict'; return { restrict: 'A', scope: { clickOutside: '&' }, link: function (scope, el) { $document.on('click', function (e) { if (el !== e.target && !el[0].contains(e.target)) { scope.$apply(function () { scope.$eval(scope.clickOutside); }); } }); } }; });