Fix for CB-1257

This commit is contained in:
Joe Bowser 2012-08-17 14:35:08 -07:00
parent 1b33dbe2ae
commit 1d28506b09

View File

@ -176,7 +176,11 @@ public class App extends Plugin {
* This is the same as pressing the backbutton on Android device.
*/
public void backHistory() {
this.webView.backHistory();
cordova.getActivity().runOnUiThread(new Runnable() {
public void run() {
webView.backHistory();
}
});
}
/**