You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.
for example.
when pushed a screen like "settings", press back button, it should execute "popscreen", but now it just minimized the app to background.
when press menubutton, it should open the app menu, but it did nothing.
this should be implemented.
The text was updated successfully, but these errors were encountered:
you can easily assign your own function, like "popscreen" to the button:
document.addEventListener("deviceready", function () {
document.addEventListener('menubutton', onMenuButton);
document.addEventListener('backbutton', onBackButton);
});
function onMenuButton() {
console.log("The Menu button was pressed");
}
function onBackButton() {
console.log("POPSCREEN?");
}
for example.
when pushed a screen like "settings", press back button, it should execute "popscreen", but now it just minimized the app to background.
when press menubutton, it should open the app menu, but it did nothing.
this should be implemented.
The text was updated successfully, but these errors were encountered: