{"version":3,"sources":["directives/video-box.js"],"names":["config","Width","Height","Frameborder","Allow","Allowfullscreen","ExternalClass","angular","module","directive","$sce","restrict","replace","transclude","scope","Model","Config","templateUrl","controller","$scope","undefined","VideoSrc","Title","trustAsHtml","VidSrc","trustAsResourceUrl","console","log","playing","playPause"],"mappings":";;AAAC,aAAY;AAET,MAAIA,MAAM,GAAG;AACTC,IAAAA,KAAK,EAAE,GADE;AAETC,IAAAA,MAAM,EAAE,GAFC;AAGTC,IAAAA,WAAW,EAAE,CAHJ;AAITC,IAAAA,KAAK,EAAE,2BAJE;AAKTC,IAAAA,eAAe,EAAE,IALR;AAMTC,IAAAA,aAAa,EAAE;AANN,GAAb;AASAC,EAAAA,OAAO,CAACC,MAAR,CAAe,UAAf,EAA2B,CAAC,YAAD,CAA3B,EACKC,SADL,CACe,UADf,EAC2B,CAAC,MAAD,EACnB,UAAUC,IAAV,EAAgB;AACZ,WAAO;AACHC,MAAAA,QAAQ,EAAE,GADP;AAEHC,MAAAA,OAAO,EAAE,IAFN;AAGHC,MAAAA,UAAU,EAAE,KAHT;AAIHC,MAAAA,KAAK,EAAE;AACHC,QAAAA,KAAK,EAAE,QADJ;AAEHC,QAAAA,MAAM,EAAE;AAFL,OAJJ;AAQHC,MAAAA,WAAW,EAAE,oCARV;AASHC,MAAAA,UAAU,EAAE,CAAC,QAAD,EACR,UAAUC,MAAV,EAAkB;AAEd,YAAIA,MAAM,CAACH,MAAP,IAAiBI,SAArB,EAAgC;AAC5BD,UAAAA,MAAM,CAACH,MAAP,GAAgBhB,MAAhB;AACH,SAJa,CAMd;;;AACAmB,QAAAA,MAAM,CAACJ,KAAP,CAAaM,QAAb,IAAyB,oBAAzB,CAPc,CASd;;AACAF,QAAAA,MAAM,CAACG,KAAP,GAAeZ,IAAI,CAACa,WAAL,CAAiBJ,MAAM,CAACJ,KAAP,CAAaO,KAA9B,CAAf;AACAH,QAAAA,MAAM,CAACK,MAAP,GAAgBd,IAAI,CAACe,kBAAL,CAAwBN,MAAM,CAACJ,KAAP,CAAaM,QAArC,CAAhB;AAGAK,QAAAA,OAAO,CAACC,GAAR,CAAYR,MAAM,CAACK,MAAnB;AAEAL,QAAAA,MAAM,CAACS,OAAP,GAAiB,KAAjB;;AAEAT,QAAAA,MAAM,CAACU,SAAP,GAAmB,YAAY;AAC3BV,UAAAA,MAAM,CAACS,OAAP,GAAiB,CAACT,MAAM,CAACS,OAAzB;AACH,SAFD;AAGH,OAtBO;AATT,KAAP;AAkCH,GApCkB,CAD3B;AAwCH,CAnDA,GAAD","sourcesContent":["(function () {\r\n\r\n var config = {\r\n Width: 720,\r\n Height: 405,\r\n Frameborder: 0,\r\n Allow: 'autoplay; encrypted-media',\r\n Allowfullscreen: true,\r\n ExternalClass: 'videoBox--modifier'\r\n };\r\n\r\n angular.module('videoBox', ['ngSanitize'])\r\n .directive('videoBox', ['$sce',\r\n function ($sce) {\r\n return {\r\n restrict: 'A',\r\n replace: true,\r\n transclude: false,\r\n scope: {\r\n Model: \"=model\",\r\n Config: \"=?config\",\r\n },\r\n templateUrl: '/Assets/ngtemplates/video-box.html',\r\n controller: ['$scope',\r\n function ($scope) {\r\n\r\n if ($scope.Config == undefined) {\r\n $scope.Config = config;\r\n }\r\n\r\n // Embeded videos will now only autoplay if set to mute.\r\n $scope.Model.VideoSrc += '?autoplay=1&mute=1';\r\n\r\n // Prevents XOrigin errors\r\n $scope.Title = $sce.trustAsHtml($scope.Model.Title);\r\n $scope.VidSrc = $sce.trustAsResourceUrl($scope.Model.VideoSrc);\r\n\r\n \r\n console.log($scope.VidSrc);\r\n\r\n $scope.playing = false;\r\n\r\n $scope.playPause = function () {\r\n $scope.playing = !$scope.playing;\r\n };\r\n }\r\n ]\r\n };\r\n }\r\n ]\r\n );\r\n}());"],"file":"../../directives/video-box.js"}