mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Remove unused parameter.
This commit is contained in:
parent
cf924512c0
commit
495cf9f7ce
1 changed files with 1 additions and 1 deletions
|
@ -828,7 +828,7 @@ new function() { // Injection scope for mouse events on the browser
|
|||
handleMouseMove(view, event);
|
||||
};
|
||||
|
||||
docEvents[mousedown] = function(event) {
|
||||
docEvents[mousedown] = function() {
|
||||
// In order to not switch views during scroll dragging on touch devices,
|
||||
// we need to know if the mouse was clicked anywhere on the document
|
||||
// (see docEvents[mousemove]) The rest happens in viewEvents[mousedown].
|
||||
|
|
Loading…
Reference in a new issue