(function () { "use strict"; var streamApp = angular.module('streamApp'); streamApp.directive('lookBackFilterDirective', [LookbackFilterDirective]); function LookbackFilterDirective() { return { restrict: 'E', scope: { callback: '=', filters: '=', callbackDay: '=', use: '=' }, templateUrl: '/App/Directives/filters/lookBackFilterDirective.html?v=6.0.0c', link: function (scope, element, attrs, tabsCtrl) { scope.messageTime = ["If you select a day of the year, you can see memories from around that day " + "in previous years.", "This is a good way to re-live a time of year like going back to school or Christmas." ]; } }; } }());