Skip to content

Commit

Permalink
Merge pull request #3923 from dpalou/MOBILE-3947
Browse files Browse the repository at this point in the history
Mobile 3947
  • Loading branch information
crazyserver authored Feb 6, 2024
2 parents 0541415 + 1250b9d commit bb9bb3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ export class CoreCompileHtmlComponent implements OnChanges, OnDestroy, DoCheck {
this.container,
this.extraImports,
);

this.element.addEventListener('submit', (event) => {
event.preventDefault();
});
}
this.componentRef && this.created.emit(this.componentRef.instance);

Expand Down
12 changes: 0 additions & 12 deletions src/theme/theme.base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1989,15 +1989,3 @@ ion-item.item-label-stacked ion-datetime-button {
margin-bottom: 8px;
align-self: self-end;
}

// Development styles. Most of them temporary.
html.development {
ion-checkbox.legacy-checkbox,
ion-radio.legacy-radio,
ion-select.legacy-select,
ion-toggle.legacy-toggle,
ion-textarea.legacy-textarea,
ion-input.legacy-input {
background: red !important;
}
}

0 comments on commit bb9bb3d

Please sign in to comment.