mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-08-14 15:08:53 -04:00
Change parameter sequence in mouse event code.
This commit is contained in:
parent
9061daa935
commit
cf54b1a7c1
2 changed files with 10 additions and 10 deletions
src/ui
|
@ -20,7 +20,7 @@
|
|||
* @extends Event
|
||||
*/
|
||||
var MouseEvent = this.MouseEvent = Event.extend(/** @lends MouseEvent# */{
|
||||
initialize: function(type, point, target, event) {
|
||||
initialize: function(type, event, point, target) {
|
||||
this.base(event);
|
||||
this.type = type;
|
||||
this.point = point;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue