mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-17 02:01:05 +00:00
Casing Issue. Remove unneed variables.
This commit is contained in:
parent
807f57b04a
commit
888f324e46
1 changed files with 2 additions and 5 deletions
|
|
@ -1,8 +1,5 @@
|
|||
(function() {
|
||||
|
||||
var degreesToRadians = fabric.util.degreesToRadians,
|
||||
radiansToDegrees = fabric.util.radiansToDegrees;
|
||||
|
||||
fabric.util.object.extend(fabric.Canvas.prototype, /** @lends fabric.Canvas.prototype */ {
|
||||
|
||||
/**
|
||||
|
|
@ -11,8 +8,8 @@
|
|||
* @param e Event object by Event.js
|
||||
* @param self Event proxy object by Event.js
|
||||
*/
|
||||
__onMousewheel: function(e, self) {
|
||||
this.fire('mouse:wheel', {target: target, e: e, self: self});
|
||||
__onMouseWheel: function(e, self) {
|
||||
this.fire('mouse:wheel', {e: e, self: self});
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
|
|
|||
Loading…
Reference in a new issue