Skip to content

Commit

Permalink
Minor spelling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Hofmeyr authored and Rory Grandin committed Apr 28, 2020
1 parent 2760664 commit 1554d74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/android/InAppBrowser.java
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ public void run() {
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
dialog.setCancelable(true);
dialog.setInAppBroswer(getInAppBrowser());
dialog.setInAppBrowser(getInAppBrowser());

// Main container layout
LinearLayout main = new LinearLayout(cordova.getActivity());
Expand Down
2 changes: 1 addition & 1 deletion src/android/InAppBrowserDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public InAppBrowserDialog(Context context, int theme) {
this.context = context;
}

public void setInAppBroswer(InAppBrowser browser) {
public void setInAppBrowser(InAppBrowser browser) {
this.inAppBrowser = browser;
}

Expand Down

0 comments on commit 1554d74

Please sign in to comment.