On the Blackberry playbook, the normal window.history.back does not work. Tested on the simulator....

So, I attempted this in the index.html

window.history.back = navigator.app.backHistory;

This gives control to the Phonegap funtion, but at run time it throws an error:

"Error: Status=2 Message=Class App cannot be found"

Here is the Phonegap (1.4.1) function:

/**
 * Navigate back in the browser history.
*/
App.prototype.backHistory = function() {
    // window.history.back() behaves oddly on BlackBerry, so use
    // native implementation.
    console.log("in backHistory");
    PhoneGap.exec(null, null, "App", "backHistory", []);
};

Any clues?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.