matrix-dimension/web/app/configs/widget/etherpad/etherpad.widget.component.html

21 lines
844 B
HTML
Raw Normal View History

2017-12-23 20:16:05 +00:00
<my-widget-config [widgetComponent]="this">
<ng-template #widgetParamsTemplate let-widget="widget">
<label class="label-block">
<my-field
label="{{'Pad Name' | translate}}"
[placeholder]="defaultName"
[(value)]="widget.dimension.newName"
[disabled]="isUpdating"
[maxlength]="39"
></my-field>
2017-12-23 20:16:05 +00:00
</label>
<label class="label-block">
{{'Pad URL' | translate}}
2017-12-23 20:16:05 +00:00
<input type="text" class="form-control"
2019-06-29 06:51:26 +00:00
placeholder="https://scalar.vector.im/etherpad/p/MyCoolPadName"
2017-12-23 20:16:05 +00:00
[(ngModel)]="widget.dimension.newUrl" name="widget-url-{{widget.id}}"
[disabled]="isUpdating"/>
</label>
</ng-template>
</my-widget-config>