aboutsummaryrefslogtreecommitdiff
path: root/mobile/algebra.html
blob: 4f08aad8d3f0e31b4234199cf28f7035983e6b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<section class="qtype-algebra" ion-list *ngIf="question.text || question.text === ''">
    <ion-item text-wrap>
            <core-format-text [component]="component"
                [componentId]="componentId" [text]="question.text">
            </core-format-text>
    </ion-item>
    <ion-item>
        <ion-label
            stacked
            color="gray"
            padding-left>
            {{ 'core.question.answer' | translate }}:
        </ion-label>
        <ion-input
            padding-left
            type="text"
            [attr.name]="question.input.name"
            [value]="question.input.value"
            autocorrect="off"
            [disabled]="question.input.readOnly"
            [ngClass]="[question.input.correctClass]"
        >
        </ion-input>
    </ion-item>
</section>