mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Remove unused injection scopes.
This commit is contained in:
parent
44bf596e51
commit
c0e6d5b2ee
2 changed files with 52 additions and 56 deletions
|
@ -24,45 +24,43 @@
|
|||
*
|
||||
* @extends Event
|
||||
*/
|
||||
var KeyEvent = this.KeyEvent = Event.extend(new function() {
|
||||
return /** @lends KeyEvent# */{
|
||||
initialize: function(down, key, character, event) {
|
||||
this.base(event);
|
||||
this.type = down ? 'keydown' : 'keyup';
|
||||
this.key = key;
|
||||
this.character = character;
|
||||
},
|
||||
var KeyEvent = this.KeyEvent = Event.extend(/** @lends KeyEvent# */{
|
||||
initialize: function(down, key, character, event) {
|
||||
this.base(event);
|
||||
this.type = down ? 'keydown' : 'keyup';
|
||||
this.key = key;
|
||||
this.character = character;
|
||||
},
|
||||
|
||||
/**
|
||||
* The type of key event.
|
||||
*
|
||||
* @name KeyEvent#type
|
||||
* @type String('keydown', 'keyup')
|
||||
*/
|
||||
/**
|
||||
* The type of key event.
|
||||
*
|
||||
* @name KeyEvent#type
|
||||
* @type String('keydown', 'keyup')
|
||||
*/
|
||||
|
||||
/**
|
||||
* The string character of the key that caused this key event.
|
||||
*
|
||||
* @name KeyEvent#character
|
||||
* @type String
|
||||
*/
|
||||
/**
|
||||
* The string character of the key that caused this key event.
|
||||
*
|
||||
* @name KeyEvent#character
|
||||
* @type String
|
||||
*/
|
||||
|
||||
/**
|
||||
* The key that caused this key event.
|
||||
*
|
||||
* @name KeyEvent#key
|
||||
* @type String
|
||||
*/
|
||||
/**
|
||||
* The key that caused this key event.
|
||||
*
|
||||
* @name KeyEvent#key
|
||||
* @type String
|
||||
*/
|
||||
|
||||
/**
|
||||
* @return {String} A string representation of the key event.
|
||||
*/
|
||||
toString: function() {
|
||||
return '{ type: ' + this.type
|
||||
+ ', key: ' + this.key
|
||||
+ ', character: ' + this.character
|
||||
+ ', modifiers: ' + this.getModifiers()
|
||||
+ ' }';
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @return {String} A string representation of the key event.
|
||||
*/
|
||||
toString: function() {
|
||||
return '{ type: ' + this.type
|
||||
+ ', key: ' + this.key
|
||||
+ ', character: ' + this.character
|
||||
+ ', modifiers: ' + this.getModifiers()
|
||||
+ ' }';
|
||||
}
|
||||
});
|
||||
|
|
|
@ -19,24 +19,22 @@
|
|||
*
|
||||
* @extends Event
|
||||
*/
|
||||
var MouseEvent = this.MouseEvent = Event.extend(new function() {
|
||||
return /** @lends MouseEvent# */{
|
||||
initialize: function(type, point, target, event) {
|
||||
this.base(event);
|
||||
this.type = type;
|
||||
this.point = point;
|
||||
this.target = target;
|
||||
},
|
||||
var MouseEvent = this.MouseEvent = Event.extend(/** @lends MouseEvent# */{
|
||||
initialize: function(type, point, target, event) {
|
||||
this.base(event);
|
||||
this.type = type;
|
||||
this.point = point;
|
||||
this.target = target;
|
||||
},
|
||||
|
||||
/**
|
||||
* @return {String} A string representation of the key event.
|
||||
*/
|
||||
toString: function() {
|
||||
return '{ type: ' + this.type
|
||||
+ ', point: ' + this.point
|
||||
+ ', target: ' + this.target
|
||||
+ ', modifiers: ' + this.getModifiers()
|
||||
+ ' }';
|
||||
}
|
||||
};
|
||||
/**
|
||||
* @return {String} A string representation of the key event.
|
||||
*/
|
||||
toString: function() {
|
||||
return '{ type: ' + this.type
|
||||
+ ', point: ' + this.point
|
||||
+ ', target: ' + this.target
|
||||
+ ', modifiers: ' + this.getModifiers()
|
||||
+ ' }';
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue