Files
redash/rd_ui/app/views/dialogs/embed_code.html
2016-10-07 00:07:54 +03:00

18 lines
607 B
HTML

<div class="modal-header">
<button type="button" class="close" aria-label="Close" ng-click="close()"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Embed Code</h4>
</div>
<div class="modal-body">
<h5>IFrame Embed</h5>
<div>
<code>&lt;iframe src="{{ embedUrl }}" width="720" height="391"&gt;&lt;/iframe&gt;</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>