Skip to content

Instantly share code, notes, and snippets.

@tehillim
Created February 3, 2016 15:48
Show Gist options
  • Select an option

  • Save tehillim/4b23e9e1c9eeaf5ec9f6 to your computer and use it in GitHub Desktop.

Select an option

Save tehillim/4b23e9e1c9eeaf5ec9f6 to your computer and use it in GitHub Desktop.
아이오닉 안드로이드 Back버튼 앱 종료 확인 다이얼로그 띄우기
.run(function($ionicPlatform, $ionicPopup) {
$ionicPlatform.registerBackButtonAction(function(event) {
if (true) {
$ionicPopup.confirm({
title: '종료확인',
template: '앱을 종료할까요?'
}).then(function(res) {
if (res) {
ionic.Platform.exitApp();
}
})
}
}, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment