JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
preview in iframe, load_html method
[peach-html5-editor.git] / editor_tests.coffee
1 in_el = document.getElementById 'in'
2 out_el = document.getElementById 'out'
3 button = document.getElementById 'button'
4 editor = null
5 button.onclick = in_el.onchange = in_el.onkeyup = ->
6         if editor?
7                 editor.load_html in_el
8         else
9                 editor = wheic.wysiwyg in_el
10         editor.iframe.contentDocument.body.innerHTML = out_el.value = wheic.dom_to_html editor.dom
11         return false
12 button.value="Cleanup"
13 button.removeAttribute 'disabled'