removed console logs used for testing
parent
a7c8edde92
commit
2096665f8f
|
|
@ -853,7 +853,6 @@ export default class SummaryUiHandler extends UiHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
getSelectedMove(): Move {
|
getSelectedMove(): Move {
|
||||||
console.log("selected moves")
|
|
||||||
if (this.cursor !== Page.MOVES)
|
if (this.cursor !== Page.MOVES)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
|
|
@ -865,7 +864,6 @@ export default class SummaryUiHandler extends UiHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
showMoveSelect() {
|
showMoveSelect() {
|
||||||
console.log("show move select")
|
|
||||||
this.moveSelect = true;
|
this.moveSelect = true;
|
||||||
this.extraMoveRowContainer.setVisible(true);
|
this.extraMoveRowContainer.setVisible(true);
|
||||||
this.selectedMoveIndex = -1;
|
this.selectedMoveIndex = -1;
|
||||||
|
|
@ -874,7 +872,6 @@ export default class SummaryUiHandler extends UiHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
hideMoveSelect() {
|
hideMoveSelect() {
|
||||||
console.log("hide move select")
|
|
||||||
if (this.summaryUiMode === SummaryUiMode.LEARN_MOVE) {
|
if (this.summaryUiMode === SummaryUiMode.LEARN_MOVE) {
|
||||||
this.moveSelectFunction(4);
|
this.moveSelectFunction(4);
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue