blob: a78ce12978629523151668a4987d4f456e5d5b58 [file] [log] [blame]
(function () {
'use strict';
angular.module('mCord')
.directive('eNodeMapPanel', function () {
return {
restrict: 'E',
scope: {
eNodeB: '='
},
bindToController: true,
controllerAs: 'vm',
templateUrl: 'app/view/home/e-node-map-panel.tpl.html',
controller: function($scope){
this.close = () => {
delete this.eNodeB;
}
}
}
});
}());