Files
superset2/panoramix/static/widgets/viz_markup.js
2015-12-20 21:49:59 -08:00

18 lines
393 B
JavaScript

px.registerViz('markup', function(slice) {
function refresh() {
$('#code').attr('rows', '15')
$.getJSON(slice.jsonEndpoint(), function(payload) {
slice.container.html(payload.data.html);
slice.done();
})
.fail(function(xhr) {
slice.error(xhr.responseText);
});
};
return {
render: refresh,
resize: refresh,
};
});