Skip to content
This repository was archived by the owner on Dec 20, 2018. It is now read-only.

Commit 045dc18

Browse files
committed
Styling issues
1 parent deaa908 commit 045dc18

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/xbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ XboxController.configure = function () {
253253
default:
254254
console.log('error try again');
255255
}
256-
}
256+
};
257257

258258
util.inherits(XboxController, events.EventEmitter);
259259

tests/test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
var XboxController = require('../lib/xbox')
2-
var xbox = new XboxController
1+
var XboxController = require('../lib/xbox');
2+
var xbox = new XboxController;
33

44

55
xbox.on('a:press', function (key) {
@@ -12,17 +12,17 @@ xbox.on('b:release', function (key) {
1212

1313

1414
xbox.on('lefttrigger', function (position) {
15-
console.log('lefttrigger', position)
15+
console.log('lefttrigger', position);
1616
});
1717

1818
xbox.on('righttrigger', function (position) {
19-
console.log('righttrigger', position)
19+
console.log('righttrigger', position);
2020
});
2121

2222
xbox.on('left:move', function (position) {
23-
console.log('left:move', position)
23+
console.log('left:move', position);
2424
});
2525

2626
xbox.on('right:move', function (position) {
27-
console.log('right:move', position)
27+
console.log('right:move', position);
2828
});

0 commit comments

Comments
 (0)