Skip to content

Commit

Permalink
fixed js style
Browse files Browse the repository at this point in the history
  • Loading branch information
codealchemist committed Jun 24, 2016
1 parent bc6effe commit 7ba61f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ function dragDrop (elem, listeners) {
}

// drop text support
var text = e.dataTransfer.getData("text")
var text = e.dataTransfer.getData('text')
if (text) {
if (listeners.onDrop) {
listeners.onDrop([text], pos)
}
}

return false
}
Expand Down

0 comments on commit 7ba61f8

Please sign in to comment.