Idiomatic JavaScript
Also remove executable bit from LICENSE.
This commit is contained in:
parent
9838176a49
commit
cf00e200c7
6 changed files with 14 additions and 14 deletions
|
@ -16,14 +16,14 @@ PIXI.Point = function(x, y)
|
|||
* @type Number
|
||||
* @default 0
|
||||
*/
|
||||
this.x = x ? x : 0;
|
||||
this.x = x || 0;
|
||||
|
||||
/**
|
||||
* @property y
|
||||
* @type Number
|
||||
* @default 0
|
||||
*/
|
||||
this.y = y ? y : 0;
|
||||
this.y = y || 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue