2233_global-refactor #341

Merged
bernat merged 10 commits from 2233_global-refactor into dev 2020-07-29 09:29:06 +00:00
5 changed files with 5 additions and 5 deletions
Showing only changes of commit 9d8c64fb92 - Show all commits

View File

@ -21,7 +21,7 @@ export default class DataViewer {
}
}
ngModule.component('vnDataViewer', {
ngModule.vnComponent('vnDataViewer', {
template: require('./index.html'),
transclude: true,
controller: DataViewer,

View File

@ -42,7 +42,7 @@ export default class Controller extends Component {
}
}
ngModule.component('vnLabelValue', {
ngModule.vnComponent('vnLabelValue', {
controller: Controller,
template: require('./index.html'),
transclude: true,

View File

@ -45,7 +45,7 @@ export default class Table {
Table.$inject = ['$scope', '$element', '$transclude'];
ngModule.component('vnTable', {
ngModule.vnComponent('vnTable', {
template: require('./index.html'),
transclude: true,
controller: Table,

View File

@ -94,7 +94,7 @@ export default class Controller extends Component {
}
Controller.$inject = ['$element', '$scope', '$transclude', '$timeout'];
ngModule.component('vnTdEditable', {
ngModule.vnComponent('vnTdEditable', {
template: require('./index.html'),
controller: Controller,
bindings: {

View File

@ -75,7 +75,7 @@ export default class Th {
Th.$inject = ['$element'];
ngModule.component('vnTh', {
ngModule.vnComponent('vnTh', {
template: require('./index.html'),
transclude: true,
controller: Th,