Skip to content

Commit 0adbaf1

Browse files
committed
chore: cleanup
1 parent 34d4d7a commit 0adbaf1

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

packages/ionic-portals/index.android.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export class IonicPortalManager {
1313
}
1414

1515
export class IonicPortal extends IonicPortalCommon {
16-
1716
private _androidViewId = -1;
1817

1918
// @ts-ignore
@@ -26,9 +25,7 @@ export class IonicPortal extends IonicPortalCommon {
2625
throw new Error(`IonicPortal requires an 'id' property.`);
2726
}
2827

29-
3028
const portalWebView = new io.ionic.portals.PortalView(this._context);
31-
3229

3330
portalWebView.setPortalId(this.id);
3431

packages/ionic-portals/index.ios.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ export class IonicPortalManager {
1515

1616
export class IonicPortal extends IonicPortalCommon {
1717
private _handleOrientationFn: (args: OrientationChangedEventData) => void;
18-
18+
1919
// @ts-ignore
2020
get ios(): PortalWebView {
2121
return this.nativeView;
2222
}
2323

2424
createNativeView() {
25-
console.log('createNativeView', this.id);
2625
if (!this.id) {
2726
throw new Error(`IonicPortal requires an 'id' property.`);
2827
}

0 commit comments

Comments
 (0)