Skip to content

Commit d0d7cc1

Browse files
committed
codestyle
1 parent d8e191d commit d0d7cc1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/js/elementfactory.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,14 @@ var ElementFactory = function (game) {
213213
this.factorBullet = function (type) {
214214
var bullet = _game.add.sprite(_game.world.centerX, _game.world.centerY, 'bullet_' + type);
215215
bullet.btnSound = null;
216-
if(type == 'increase') {
216+
if (type == 'increase') {
217217
bullet.btnSound = _game.add.audio('gravity_plus');
218218
} else {
219219
bullet.btnSound = _game.add.audio('gravity_minus');
220-
};
221-
_game.sound.setDecodedCallback([bullet.btnSound], function(){
222-
},this);
220+
}
221+
;
222+
_game.sound.setDecodedCallback([bullet.btnSound], function () {
223+
}, this);
223224
bullet.btnSound.play();
224225
bullet.anchor.setTo(0.5, 0.5);
225226
bullet.scale.setTo(0.4, 0.4);

src/js/scenes/engine/phaser/menu.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Menu.prototype = {
7373
}
7474
},
7575
shutdown: function () {
76-
for(var i = 0; i < this.buttons.length; i++) {
76+
for (var i = 0; i < this.buttons.length; i++) {
7777
this.buttons[i].btnSound.stop();
7878
}
7979
}

0 commit comments

Comments
 (0)