Skip to content
Snippets Groups Projects
Commit e509c66c authored by jojohoch's avatar jojohoch
Browse files

[player] Remove console log

parent 9ef53a8c
No related branches found
No related tags found
No related merge requests found
import { Injectable } from '@angular/core';
import { MathfieldElement } from 'mathlive';
import { TextAreaMathComponent } from 'common/components/input-elements/text-area-math/text-area-math.component';
import { InputService } from 'player/src/app/services/input-service';
import { ScrollToInputService } from 'player/src/app/services/scroll-to-input.service';
import { TextInputComponentType } from 'player/src/app/models/text-input-component.type';
import { MathFieldComponent } from 'common/components/input-elements/math-field.component';
import { MathTableComponent } from 'common/components/input-elements/math-table.component';
@Injectable({
providedIn: 'root'
......@@ -16,7 +13,6 @@ export class MathKeyboardService extends ScrollToInputService {
toggle(focusedTextInput: { inputElement: MathfieldElement; focused: boolean },
elementComponent: TextInputComponentType | MathFieldComponent): boolean {
if (focusedTextInput.focused) {
console.log('focusedTextInput.focused', focusedTextInput.inputElement);
this.open(focusedTextInput.inputElement, elementComponent);
} else {
this.close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment