-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Displahing and basic rendereing in mobile
- Loading branch information
1 parent
37f3351
commit 72913d6
Showing
3 changed files
with
8 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
<section class="list qtype-aitext-container qtype_aitext" ion-list *ngIf="question.text || question.text === ''"> | ||
<ion-item><p> | ||
<core-format-text [component]="component" [componentId]="componentId" | ||
[text]="question.text"></core-format-text> | ||
</p></ion-item> | ||
<section class="list qtype-aitext-container qtype_aitext"> | ||
<ion-item> | ||
<core-format-text [component]="component" [componentId]="componentId" | ||
[text]="question.textarea"></core-format-text> | ||
<p> | ||
<core-format-text [component]="component" [componentId]="componentId" | ||
[text]="question.text"></core-format-text> | ||
</p> | ||
</ion-item> | ||
<ion-item> | ||
<core-format-text [component]="component" [componentId]="componentId" | ||
[text]="question.itemcount" (afterRender)="questionRendered()"></core-format-text> | ||
[text]="question.textarea"></core-format-text> | ||
</ion-item> | ||
</section> |