Basic popover tab components.

This commit is contained in:
József Farkas
2016-05-12 19:50:24 +02:00
parent da44928169
commit ac5bf13105
8 changed files with 158 additions and 11 deletions

View File

@@ -0,0 +1,28 @@
import { Component, OnInit } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'layer-tab',
template:
`
<select>
<option> Activate </option>
<option> Toggle </option>
</select>
<span>the</span>
<select>
<option> Mod </option>
<option> Fn </option>
<option> Mouse </option>
</select>
<span>
layer by holding this key.
</span>
`
})
export class LayerTabComponent implements OnInit {
constructor() { }
ngOnInit() { }
}