Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function onLoad(){
- document.addEventListener('deviceready', function() {
- document.addEventListener("backbutton", ShowExitDialog, false);
- }, false);
- }
- function ShowExitDialog() {
- navigator.notification.confirm(
- ("Are you sure you want to exit ?"),
- alertexit,
- 'Exit',
- 'Ya,Tidak'
- );
- }
- function alertexit(button){
- if(button=="1" || button==1){
- device.exitApp();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment