iknb/components/about/about.component.js

26 lines
623 B
JavaScript
Raw Normal View History

2020-07-08 11:56:33 +00:00
'use strict';
angular
.module('sloDialectsApp')
.component('aboutComponent', {
templateUrl: 'components/about/about.template.html',
bindings: {
resolve: '<',
close: '&',
dismiss: '&',
modalInstance: '<'
},
controller: [function aboutController() {
var vm = this;
vm.$onInit = function () {
// injected result
vm.modalInstance.result.then(function(){
}, function(){
});
};
}]
});