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

22 lines
776 B
HTML
Raw Normal View History

<my-widget-config
[widgetComponent]="this"
addTitle="{{'Create new notepad' | translate}}"
editTitle="{{'Notepads' | translate}}"
>
2017-12-23 20:16:05 +00:00
<ng-template #widgetParamsTemplate let-widget="widget">
<my-field
label="{{'Pad name' | translate}}"
[placeholder]="defaultName"
[(value)]="widget.dimension.newName"
[disabled]="isUpdating"
[maxlength]="39"
></my-field>
<my-field
label="{{'Pad URL' | translate}}"
placeholder="https://scalar.vector.im/etherpad/p/MyCoolPadName"
[(value)]="widget.dimension.newUrl"
[disabled]="isUpdating"
></my-field>
2017-12-23 20:16:05 +00:00
</ng-template>
</my-widget-config>