/* global twitterFetcher */ /** * This directive will allow show latest tweet. * Usage: */ Application.Directives.directive('twitter', [ function () { return ({ restrict: 'E', scope: { profile: '@' }, templateUrl: '<%= asset_path "home/_twitter.html" %>', link ($scope, element, attributes) { const configProfile = { 'profile': { 'screenName': $scope.profile }, 'domId': 'twitter', 'maxTweets': 1, 'enableLinks': true, 'showUser': false, 'showTime': true, 'showImages': false, 'showRetweet': true, 'showInteraction': false, 'lang': Fablab.locale }; if ($scope.profile) { twitterFetcher.fetch(configProfile); } } }); }]);