unserver-unify
Version:
14 lines • 517 B
JavaScript
angular.module('bamboo').component('u2bVideo', {
templateUrl: 'app/directive/video/youtube.component.html',
bindings: {
url: '<',
},
controller: ['$sce','youtubeEmbedUtils',function($sce,youtubeEmbedUtils) {
var self = this;
self.$onInit = function() {
console.log(self.url);
self.youtubeID = youtubeEmbedUtils.getIdFromURL(self.url);
self.youtubeUrl = $sce.trustAsResourceUrl('//www.youtube.com/embed/' + self.youtubeID + '?&controls=1&showinfo=0');
};
}]
});