mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-20 23:56:20 +08:00
Weird merge error didn't account for isBackButtonBound
This commit is contained in:
parent
bf0df9f3c3
commit
dcb127c14d
@ -208,7 +208,7 @@ public class App extends Plugin {
|
||||
* @return boolean
|
||||
*/
|
||||
public boolean isBackbuttonOverridden() {
|
||||
return this.cordova.isBackButtonBound();
|
||||
return webView.isBackButtonBound();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -771,4 +771,9 @@ public class CordovaWebView extends WebView {
|
||||
keyUpCodes.add(keyCode);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isBackButtonBound()
|
||||
{
|
||||
return this.bound;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user