JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
rename to Peach HTML5 Editor
[peach-html5-editor.git] / editor_tests.coffee
1 in_el = document.getElementById 'in'
2 button = document.getElementById 'button'
3 editor = null
4 button.onclick = in_el.onchange = in_el.onkeyup = ->
5         #button.value="Reload"
6         if editor?
7                 editor.load_html in_el.value
8         else
9                 # first run
10                 button.parentNode.removeChild button
11                 editor = peach.wysiwyg in_el
12         return false
13 button.value="Load"
14 button.removeAttribute 'disabled'
15 button.click()