(function () { "use strict"; var streamApp = angular.module('streamApp'); streamApp.directive('peopleFilterDirective', [PeopleFilterDirective]); function PeopleFilterDirective() { return { restrict: 'E', scope: { callback: '=', people: '=', callbackMe: '=', me: '=', }, templateUrl: '/App/Directives/filters/peopleFilterDirective.html?v=6.0.0c', link: function (scope, element, attrs, tabsCtrl) { scope.messagePeople = ['Select a person or multiple people to see only memories from them. ' + 'If you want to see only your memories click "Only Me".', 'If no one is selected you will see memories from everyone.']; } }; } }());