10 lines
256 B
CoffeeScript
10 lines
256 B
CoffeeScript
class @HTML
|
|
constructor: (@id) ->
|
|
@edit_box = $("##{@id} .edit-box")
|
|
@preview = $("##{@id} .preview")
|
|
@edit_box.on('input', =>
|
|
@preview.empty().append(@edit_box.val())
|
|
)
|
|
|
|
save: -> {text: @edit_box.val()}
|