Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

4 лет назад
4 лет назад
4 лет назад
4 лет назад
12345678910111213
  1. <section class="question">
  2. <h3> {{ text }} </h3>
  3. <div class="options" [ngClass]="{'inactive' : selectedChoice }">
  4. <button *ngFor="let choice of choices"
  5. (click)="selectedChoice = choice.value"
  6. [ngClass]="{'correct': selectedChoice === choice.value && selectedChoice === correctAnswer, 'wrong': selectedChoice === choice.value && selectedChoice !== correctAnswer }">
  7. {{ choice.text }}
  8. <ion-checkbox mode="ios" [checked]="selectedChoice === choice.value"></ion-checkbox>
  9. </button>
  10. </div>
  11. </section>