UNPKG

linagora-rse

Version:
40 lines (35 loc) 1.08 kB
'use strict'; (function() { var instagram = angular.module('esn.oembed.instagram', ['esn.oembed']); var provider = { name: 'instagram', regexps: [new RegExp('instagr\\.am/p/[\\w-]+', 'i'), new RegExp('instagram\\.com/p/[\\w-]+', 'i')], endpoint: 'http://api.instagram.com/oembed', type: 'rich', resolver: 'yql' }; instagram.run(function(oembedRegistry) { oembedRegistry.addProvider(provider); }); instagram.directive('instagramOembed', function(oembedResolver, oembedService) { return { restrict: 'E', replace: true, template: '<div class="oembed instagram-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() { } ); } }; }); })();