Skip to content

Commit

Permalink
Firefox fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgene committed Jul 19, 2011
1 parent ff5b155 commit 485001b
Showing 1 changed file with 6 additions and 3 deletions.
Expand Up @@ -19,19 +19,22 @@
if (!buildStepNode.dragging) {
editor.toTextArea()
}
}
},
false
)
buildStepNode.addEventListener(
"mousedown",
function(event) {
buildStepNode.dragging = true
}
},
false
)
buildStepNode.addEventListener(
"mouseup",
function(event) {
buildStepNode.dragging = false
}
},
false
)
editor.removeListenerAdded = true
Expand Down

0 comments on commit 485001b

Please sign in to comment.