Remove listener making copying json hard

This commit is contained in:
Dave Pedu 2015-02-14 14:24:11 -08:00
parent f85c10dad2
commit aa348f150a
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ function setup() {
dumpout.onclick = function() {
this.setSelectionRange(0,9999999)
}
dumpout.onkeyup = dumpout.onchange = dumpout.onkeydown = function() {
dumpout.onkeyup = dumpout.onchange = function() {
this.value = JSON.stringify(tabbro.tree)
}