mirror of
https://github.com/getredash/redash.git
synced 2026-05-09 12:01:08 -04:00
18 lines
607 B
HTML
18 lines
607 B
HTML
<div class="modal-header">
|
|
<button type="button" class="close" aria-label="Close" ng-click="close()"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title">Embed Code</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<h5>IFrame Embed</h5>
|
|
<div>
|
|
<code><iframe src="{{ embedUrl }}" width="720" height="391"></iframe></code>
|
|
</div>
|
|
<span class="text-muted">(height should be adjusted)</span>
|
|
<div ng-if="snapshotUrl">
|
|
<h5>Image Embed</h5>
|
|
<div>
|
|
<code style="overflow-wrap:break-word;">{{snapshotUrl}}</code>
|
|
</div>
|
|
</div>
|
|
</div>
|