Function does not work after the application is installed

0

This is the function that when I install does not work.

document.addEventListener("deviceready", onDeviceReady, false);

function onDeviceReady() {
  document.addEventListener("backbutton", onBackKeyDown, false);//quando ele clicar no botao de voltar
}

function onBackKeyDown(e) {
  if (overlayVisible) {
    e.preventDefault();
    hideOverlay();
  }
  else {
    navigator.notification.confirm("Você deseja sair do aplicativo?", onConfirm, "Confirmação", "Sim,Não"); 
    // alerta de confirmação para sair do aplicativo
  }
}

function onConfirm(button) {
  if (button == 2) {//Se o usuario escolher nao simplesmente nao fara nada
    return;
  }
  else {
    navigator.app.exitApp();// Caso contrario sair do app.
  }
}
    
asked by anonymous 06.04.2015 / 17:22

0 answers