mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
11 lines
490 B
HTML
11 lines
490 B
HTML
|
<my-widget-config [widgetComponent]="this">
|
||
|
<ng-template #widgetParamsTemplate let-widget="widget">
|
||
|
<label class="label-block">
|
||
|
Video URL
|
||
|
<input type="text" class="form-control"
|
||
|
placeholder="https://www.youtube.com/watch?v=jr2mXSKq3B4"
|
||
|
[(ngModel)]="widget.dimension.newData.videoUrl" name="widget-url-{{widget.id}}"
|
||
|
[disabled]="isUpdating"/>
|
||
|
</label>
|
||
|
</ng-template>
|
||
|
</my-widget-config>
|