mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
15 lines
296 B
JavaScript
15 lines
296 B
JavaScript
const $ = require('jquery');
|
|
|
|
require('./markup.css');
|
|
|
|
function markupWidget(slice, payload) {
|
|
$('#code').attr('rows', '15');
|
|
slice.container.css({
|
|
overflow: 'auto',
|
|
height: slice.container.height(),
|
|
});
|
|
slice.container.html(payload.data.html);
|
|
}
|
|
|
|
module.exports = markupWidget;
|