This repository was archived by the owner on Feb 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed
components/editor/actions/app-editor-actions
modals/editor/app-slide-navigate
popovers/editor/actions/app-more-actions Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -217,8 +217,8 @@ export class AppEditorActions {
217217
218218 < ion-tab-button onClick = { ( ) => this . openSlideNavigate ( ) } color = "primary" class = "wider-devices"
219219 mode = "md" >
220- < ion-icon src = "/assets/icons/chapters .svg" > </ ion-icon >
221- < ion-label > Go to slide </ ion-label >
220+ < ion-icon src = "/assets/icons/ionicons/list .svg" > </ ion-icon >
221+ < ion-label > Slides </ ion-label >
222222 </ ion-tab-button >
223223
224224 < ion-tab-button onClick = { ( ) => this . toggleFullScreenMode ( ) } color = "primary" class = "wider-devices" mode = "md" >
Original file line number Diff line number Diff line change 11app-slide-navigate {
2- ion-list {
2+ ion-reorder-group {
33 ion-item {
44 --border-color : transparent ;
55 }
66 }
7+
8+ p {
9+ font-size : var (--font-size-very-small );
10+ }
711}
Original file line number Diff line number Diff line change @@ -96,10 +96,12 @@ export class AppSlideNavigate {
9696 < ion-icon name = "close" > </ ion-icon >
9797 </ ion-button >
9898 </ ion-buttons >
99- < ion-title class = "ion-text-uppercase" > Go to slide </ ion-title >
99+ < ion-title class = "ion-text-uppercase" > Slides </ ion-title >
100100 </ ion-toolbar >
101101 </ ion-header > ,
102102 < ion-content class = "ion-padding" >
103+ < p class = "ion-padding-start ion-padding-end" > Jump to a specific slide or change the order of your slides.</ p >
104+
103105 < ion-reorder-group onIonItemReorder = { ( $event : CustomEvent < ItemReorderEventDetail > ) => this . onReorder ( $event ) } disabled = { ! this . slides || this . slides . length <= 1 } >
104106 { this . renderSlides ( ) }
105107 </ ion-reorder-group >
@@ -114,7 +116,7 @@ export class AppSlideNavigate {
114116
115117 const text = 'Slide ' + ( i + 1 ) + ( slideTitle ? ': ' + slideTitle : '' ) ;
116118
117- return < ion-item ion-item button onClick = { ( ) => this . jumpToSlide ( i ) } >
119+ return < ion-item ion-item button onClick = { ( ) => this . jumpToSlide ( i ) } detail = { false } >
118120 < ion-label > { text } </ ion-label >
119121 < ion-reorder slot = "end" > </ ion-reorder >
120122 </ ion-item >
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export class AppMoreActions {
3131
3232 render ( ) {
3333 return < div class = "ion-padding" >
34- < a onClick = { ( ) => this . closePopover ( MoreAction . JUMP_TO ) } > < p > Go to slide </ p > </ a >
34+ < a onClick = { ( ) => this . closePopover ( MoreAction . JUMP_TO ) } > < p > Slides </ p > </ a >
3535 { this . renderFullscreenOption ( ) }
3636 < a onClick = { ( ) => this . closePopover ( MoreAction . REMOTE ) } > < p > Remote control</ p > </ a >
3737 < app-share-options onSelectedOption = { ( $event : CustomEvent < MoreAction > ) => this . closeSharePopover ( $event ) } > </ app-share-options >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments