@quartic/bokehjs
Version:
Interactive, novel data visualization
34 lines (24 loc) • 614 B
text/coffeescript
import * as p from "core/properties"
import {Widget, WidgetView} from "./widget"
import template from "./markup_template"
export class MarkupView extends WidgetView
template: template
initialize: (options) ->
super(options)
()
(, 'change', )
render: () ->
super()
.empty()
.html(())
if .height
.height(.height)
if .width
.width(.width)
export class Markup extends Widget
type: "Markup"
initialize: (options) ->
super(options)
{
text: [ p.String, '' ]
}