Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
</ion-header>
<ion-content class="ion-padding">
<ion-item>
<ion-label position="stacked">Your name</ion-label>
<ion-input [(ngModel)]="name" placeholder="Your name"></ion-input>
<ion-input labelPlacement="stacked" label="Enter your name" [(ngModel)]="name" placeholder="Your name"></ion-input>
</ion-item>
</ion-content>
```
3 changes: 1 addition & 2 deletions static/usage/v7/modal/controller/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@
</ion-header>
<ion-content class="ion-padding">
<ion-item>
<ion-label position="stacked">Enter your name</ion-label>
<ion-input type="text" placeholder="Your name"></ion-input>
<ion-input type="text" label="Enter your name" label-placement="stacked" placeholder="Your name"></ion-input>
</ion-item>
</ion-content>
`;
Expand Down
3 changes: 1 addition & 2 deletions static/usage/v7/modal/controller/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
</ion-header>
<ion-content class="ion-padding">
<ion-item>
<ion-label position="stacked">Enter your name</ion-label>
<ion-input type="text" placeholder="Your name"></ion-input>
<ion-input type="text" label-placement="stacked" label="Enter your name" placeholder="Your name"></ion-input>
</ion-item>
</ion-content>
`;
Expand Down
3 changes: 1 addition & 2 deletions static/usage/v7/modal/controller/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ const ModalExample = ({
</IonHeader>
<IonContent className="ion-padding">
<IonItem>
<IonLabel position="stacked">Enter your name</IonLabel>
<IonInput ref={inputRef} placeholder="Your name" />
<IonInput ref={inputRef} labelPlacement="stacked" label="Enter your name" placeholder="Your name" />
</IonItem>
</IonContent>
</IonPage>
Expand Down
3 changes: 1 addition & 2 deletions static/usage/v7/modal/controller/vue/modal_vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
</ion-header>
<ion-content class="ion-padding">
<ion-item>
<ion-label position="stacked">Your name</ion-label>
<ion-input v-model="name" placeholder="Your name"></ion-input>
<ion-input label-placement="stacked" label="Enter your name" v-model="name" placeholder="Your name"></ion-input>
</ion-item>
</ion-content>
</template>
Expand Down