UNPKG

linagora-rse

Version:
41 lines (35 loc) 1.06 kB
'use strict'; (function() { var youtube = angular.module('esn.oembed.youtube', ['esn.oembed']); var provider = { name: 'youtube', regexps: [new RegExp('youtube\\.com/watch.+v=[\\w-]+&?', 'i'), new RegExp('youtu\\.be/[\\w-]+', 'i')], endpoint: 'http://www.youtube.com/oembed', type: 'rich', resolver: 'yql' }; youtube.run(function(oembedRegistry) { oembedRegistry.addProvider(provider); }); youtube.directive('youtubeOembed', function(oembedResolver, oembedService) { return { restrict: 'E', replace: true, template: '<div class="oembed youtube-oembed"></div>', scope: { url: '@', maxwidth: '=', maxheight: '=' }, link: function($scope, $element) { oembedResolver[provider.resolver](provider, $scope.url, $scope.maxwidth, $scope.maxheight).then( function(oembed) { angular.element(oembedService.fixHttpLinks(oembed.html)).appendTo($element[0]); }, function() { } ); } }; }); })();