Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
disasteroftheuniverse committed Dec 30, 2019
1 parent dd2b776 commit 53a7d2e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/hands.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/*jshint esversion: 8*/
//require('./quest-utils');
//require('./common-components');
//require('./aabb-lite');
/*sourcetype:module */
module.exports = {
'hand-system': AFRAME.registerSystem('oculus-quest-hands', {
init: function () { },
init: function () {},
subscribe: function () {

}
Expand Down Expand Up @@ -138,7 +136,7 @@ module.exports = {
this.eventHandlers[name] = this.eventHandlers[name].bind(this);
this.el.addEventListener(name, this.eventHandlers[name]);
},
grab: function () { },
grab: function () {},
registerEventListeners: function () {
var intersections = null;

Expand Down Expand Up @@ -233,7 +231,7 @@ module.exports = {
this.animateHand(this.determineFingerGesture('open'));
}
},
deregisterEventListeners: function () { },
deregisterEventListeners: function () {},
animateHand: function (pose) {
//console.log(pose);
if (!this.lastPose) {
Expand Down

0 comments on commit 53a7d2e

Please sign in to comment.