This repository was archived by the owner on Feb 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
studio/src/app/popovers/editor/app-slot-type Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ export class AppSlideAdd {
3030
3131 render ( ) {
3232 return [ < ion-toolbar class = "ion-margin ion-padding-end" >
33- < h2 > Toggle element type </ h2 >
33+ < h2 > Toggle section </ h2 >
3434 < ion-anchor slot = "end" onClick = { ( ) => this . closePopover ( ) } > < ion-icon name = "close" > </ ion-icon > </ ion-anchor >
3535 </ ion-toolbar > ,
3636
3737 < ion-list >
38- < a onClick = { ( ) => this . closePopover ( SlotType . H1 ) } class = { this . currentType === SlotType . H1 ? "current" : "" } > < ion-item > < h1 > Title </ h1 > </ ion-item > </ a >
39- < a onClick = { ( ) => this . closePopover ( SlotType . H2 ) } class = { this . currentType === SlotType . H2 ? "current" : "" } > < ion-item > < h2 > Title </ h2 > </ ion-item > </ a >
40- < a onClick = { ( ) => this . closePopover ( SlotType . H3 ) } class = { this . currentType === SlotType . H3 ? "current" : "" } > < ion-item > < h3 > Title </ h3 > </ ion-item > </ a >
38+ < a onClick = { ( ) => this . closePopover ( SlotType . H1 ) } class = { this . currentType === SlotType . H1 ? "current" : "" } > < ion-item > < h1 > Huge title </ h1 > </ ion-item > </ a >
39+ < a onClick = { ( ) => this . closePopover ( SlotType . H2 ) } class = { this . currentType === SlotType . H2 ? "current" : "" } > < ion-item > < h2 > Large title </ h2 > </ ion-item > </ a >
40+ < a onClick = { ( ) => this . closePopover ( SlotType . H3 ) } class = { this . currentType === SlotType . H3 ? "current" : "" } > < ion-item > < h3 > Small title </ h3 > </ ion-item > </ a >
4141 < a onClick = { ( ) => this . closePopover ( SlotType . SECTION ) } class = { this . currentType === SlotType . SECTION ? "current" : "" } > < ion-item > < p > Paragraph</ p > </ ion-item > </ a >
4242 < a onClick = { ( ) => this . closePopover ( SlotType . CODE ) } class = { this . currentType === SlotType . CODE ? "current" : "" } > < ion-item > < p > Code</ p > </ ion-item > </ a >
4343 </ ion-list >
You can’t perform that action at this time.
0 commit comments