Seperate electron and web target building
This commit is contained in:
committed by
József Farkas
parent
517aed1b1c
commit
983eb72892
27
shared/src/components/popover/tab/none/none-tab.component.ts
Normal file
27
shared/src/components/popover/tab/none/none-tab.component.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { Component, EventEmitter, OnChanges, Output } from '@angular/core';
|
||||
|
||||
import { Tab } from '../tab';
|
||||
|
||||
@Component({
|
||||
selector: 'none-tab',
|
||||
template: require('./none-tab.component.html'),
|
||||
styles: [require('./none-tab.component.scss')]
|
||||
})
|
||||
export class NoneTabComponent extends Tab implements OnChanges {
|
||||
ngOnChanges(event: any) {
|
||||
this.validAction.emit(true);
|
||||
}
|
||||
|
||||
keyActionValid(): boolean {
|
||||
return true;
|
||||
}
|
||||
|
||||
fromKeyAction(): boolean {
|
||||
return false;
|
||||
}
|
||||
|
||||
toKeyAction(): undefined {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user