Skip to content

Commit 8144c49

Browse files
committed
jshint fixes.
1 parent 2e2ba66 commit 8144c49

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/geom/Matrix.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Phaser.Matrix.prototype = {
199199
*/
200200
toArray: function (transpose, array) {
201201

202-
if (typeof array === 'undefined') { array = new PIXI.Float32Array(9) };
202+
if (typeof array === 'undefined') { array = new PIXI.Float32Array(9); }
203203

204204
if (transpose)
205205
{
@@ -242,7 +242,7 @@ Phaser.Matrix.prototype = {
242242
*/
243243
apply: function (pos, newPos) {
244244

245-
if (typeof newPos === 'undefined') { newPos = new Phaser.Point() };
245+
if (typeof newPos === 'undefined') { newPos = new Phaser.Point(); }
246246

247247
newPos.x = this.a * pos.x + this.c * pos.y + this.tx;
248248
newPos.y = this.b * pos.x + this.d * pos.y + this.ty;
@@ -263,7 +263,7 @@ Phaser.Matrix.prototype = {
263263
*/
264264
applyInverse: function (pos, newPos) {
265265

266-
if (typeof newPos === 'undefined') { newPos = new Phaser.Point() };
266+
if (typeof newPos === 'undefined') { newPos = new Phaser.Point(); }
267267

268268
var id = 1 / (this.a * this.d + this.c * -this.b);
269269
var x = pos.x;

0 commit comments

Comments
 (0)