(function () {
'use strict';
// NOT IN USE: Video
angular
.module('mohistory')
.component('video', {
templateUrl: 'app/components/video/video.component.html',
controller: videoCtrl,
controllerAs: 'video',
bindings: {
}
});
videoCtrl.$inject = [];
/**
* NOT IN USE
* @memberof mohistory
* @name video
* @ngdoc component
*/
function videoCtrl() {
var vm = this;
/* ----- Variables ----- */
/* ----- Methods ----- */
};
})();