18 lines
247 B
JavaScript
Raw Normal View History

2025-01-12 00:52:51 +08:00
HTMLWidgets.widget({
name: 'str_view',
type: 'output',
initialize: function(el, width, height) {
},
renderValue: function(el, x, instance) {
el.innerHTML = x.html;
},
resize: function(el, width, height, instance) {
}
});