Some more cleaning

This commit is contained in:
Thomas FORGIONE
2015-07-01 15:18:43 +02:00
parent 86f2094af6
commit 5e0551179e
4 changed files with 5 additions and 11 deletions

View File

@@ -428,10 +428,6 @@ TutoCamera.prototype.onKeyEvent = function(event, toSet) {
}
}
switch (event.keyCode) {
case 13: if (toSet) this.log(); break;
}
if (motionJsonCopy != JSON.stringify(this.motion)) {
// Log any change
var e = new BD.Event.KeyboardEvent();

View File

@@ -104,7 +104,6 @@ TutorialSteps.prototype.setCameras = function(cameras) {
};
TutorialSteps.prototype.nextStep = function() {
console.log(this.step);
if (this.step < this.instructions.length) {
this.alert(this.instructions[this.step].text, this.instructions[this.step].justclick);
var callback = function() {self.coinNumber++; self.nextStep();};