summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/editable-property/editable-property.component.html
blob: 3c804efb56527e7618cf9212ba9a78b6ffdab8af (plain)
1
2
3
4
5
<input class="edit pull-left" [ngModel]="name" (ngModelChange)="change($event)" (click)="startEdit()" (blur)="stopEdit()"
    (mouseover)="showEditComponent(true)" (mouseout)="showEditComponent(false)">
<button *ngIf="showEdit" type="button" class="btn blue1 pull-left" (click)="stopEdit();">
    <i class="fa fa-check"></i>
</button>