Skip to content

Commit

Permalink
MOBILE-4690 modules: Change bookmark icon to bullet list on TOCs
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyserver committed Jan 16, 2025
1 parent 8d99506 commit 3980444
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/addons/mod/book/pages/contents/contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h1>
</ion-title>
<ion-buttons slot="end">
<ion-button (click)="showToc()" [ariaLabel]="'addon.mod_book.toc' | translate" aria-haspopup="true" *ngIf="loaded">
<ion-icon name="fas-bookmark" slot="icon-only" aria-hidden="true" />
<ion-icon name="fas-list-ul" slot="icon-only" aria-hidden="true" />
</ion-button>
</ion-buttons>
</ion-toolbar>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/addons/mod/imscp/pages/view/view.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>

<ion-buttons slot="end">
<ion-button *ngIf="loaded" (click)="showToc()" aria-haspopup="true" [ariaLabel]="'addon.mod_imscp.toc' | translate">
<ion-icon name="fas-bookmark" slot="icon-only" aria-hidden="true" />
<ion-icon name="fas-list-ul" slot="icon-only" aria-hidden="true" />
</ion-button>
</ion-buttons>
</ion-toolbar>
Expand Down
2 changes: 1 addition & 1 deletion src/addons/mod/lesson/pages/player/player.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>
<ion-buttons slot="end">
<ion-button fill="clear" *ngIf="displayMenu || mediaFile" [ariaLabel]="'addon.mod_lesson.lessonmenu' | translate"
(click)="showMenu()">
<ion-icon name="fas-bookmark" slot="icon-only" aria-hidden="true" />
<ion-icon name="fas-list-ul" slot="icon-only" aria-hidden="true" />
</ion-button>
</ion-buttons>
</ion-toolbar>
Expand Down
2 changes: 1 addition & 1 deletion src/addons/mod/quiz/pages/player/player.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>
</ion-button>
<ion-button *ngIf="attemptSummary.length && !showSummary" [ariaLabel]="'addon.mod_quiz.opentoc' | translate"
(click)="openNavigation()">
<ion-icon name="fas-bookmark" slot="icon-only" aria-hidden="true" />
<ion-icon name="fas-list-ul" slot="icon-only" aria-hidden="true" />
</ion-button>
</ion-buttons>
</ion-toolbar>
Expand Down
2 changes: 1 addition & 1 deletion src/addons/mod/quiz/pages/review/review.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h1>{{ 'addon.mod_quiz.review' | translate }}</h1>
<ion-buttons slot="end">
<ion-button fill="clear" *ngIf="navigation.length" [ariaLabel]="'addon.mod_quiz.opentoc' | translate" (click)="openNavigation()"
aria-haspopup="true">
<ion-icon name="fas-bookmark" slot="icon-only" aria-hidden="true" />
<ion-icon name="fas-list-ul" slot="icon-only" aria-hidden="true" />
</ion-button>
</ion-buttons>
</ion-toolbar>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/addons/mod/scorm/pages/player/player.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>
<core-button-with-spinner *ngIf="showToc" [loading]="loadingToc">
<ion-button fill="clear" *ngIf="toc.length" (click)="openToc()" [ariaLabel]="'addon.mod_scorm.toc' | translate"
aria-haspopup="true">
<ion-icon name="fas-bookmark" slot="icon-only" aria-hidden="true" />
<ion-icon name="fas-list-ul" slot="icon-only" aria-hidden="true" />
</ion-button>
</core-button-with-spinner>
</ion-buttons>
Expand Down

0 comments on commit 3980444

Please sign in to comment.