(function () {
'use strict';
// Press videos
angular
.module('mohistory')
.component('pressVideos', {
templateUrl: 'app/components/press-videos/press-videos.component.html',
controller: pressVideosCtrl,
controllerAs: 'vid',
bindings: {
data: "<"
}
});
pressVideosCtrl.$inject = [];
/**
* CURRENTLY NOT IN USE: Press videos
* @memberof mohistory
* @name pressVideos
* @ngdoc component
*/
function pressVideosCtrl() {
var vm = this;
};
})();