mirror of
https://github.com/apache/superset.git
synced 2026-04-17 07:05:04 +00:00
13 lines
378 B
JavaScript
13 lines
378 B
JavaScript
const $ = require('jquery');
|
|
|
|
function iframeWidget(slice, payload) {
|
|
$('#code').attr('rows', '15');
|
|
const url = slice.render_template(payload.form_data.url);
|
|
slice.container.html('<iframe style="width:100%;"></iframe>');
|
|
const iframe = slice.container.find('iframe');
|
|
iframe.css('height', slice.height());
|
|
iframe.attr('src', url);
|
|
}
|
|
|
|
module.exports = iframeWidget;
|