First usable version based on AngularJS 2! Almost no converters yet, though.
This commit is contained in:
parent
8acddfe548
commit
4197bca299
13 changed files with 155 additions and 66 deletions
|
@ -1,3 +1,9 @@
|
|||
<div>
|
||||
<den-inputarea></den-inputarea>
|
||||
<div *ngFor="let step of steps" class="wrapper">
|
||||
<textarea class="input" (change)="update(step)" placeholder="Please enter your input ..."
|
||||
[(ngModel)]="step.content">{{step.content}}</textarea>
|
||||
<select class="conversion" (change)="convert(step, $event)">
|
||||
<option id="-1">Select conversion ...</option>
|
||||
<option *ngFor="let c of converters" id="{{c.getId()}}">{{c.getDisplayname()}}</option>
|
||||
</select>
|
||||
<div class="message" *ngIf="step.error">{{step.message}}</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue