Created
February 3, 2016 15:48
-
-
Save tehillim/4b23e9e1c9eeaf5ec9f6 to your computer and use it in GitHub Desktop.
아이오닉 안드로이드 Back버튼 앱 종료 확인 다이얼로그 띄우기
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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