@quartic/bokehjs
Version:
Interactive, novel data visualization
22 lines (15 loc) • 457 B
text/coffeescript
import {Widget, WidgetView} from "./widget"
import * as p from "core/properties"
export class InputWidgetView extends WidgetView
render: () ->
super()
change_input: () ->
export class InputWidget extends Widget
type: "InputWidget"
default_view: InputWidgetView
callback: [ p.Instance ]
title: [ p.String, '' ]
}