mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
82 lines
1.8 KiB
JavaScript
82 lines
1.8 KiB
JavaScript
angular.module('ionicApp', ['ionic'])
|
|
|
|
.controller('PopupCtrl', function ($scope, $timeout, $q, $ionicPopup) {
|
|
$scope.showPopup = function () {
|
|
$scope.data = {}
|
|
|
|
$ionicPopup.show({
|
|
templateUrl: 'popup-template.html',
|
|
title: 'Enter Wi-Fi Password',
|
|
subTitle: 'WPA2',
|
|
scope: $scope,
|
|
buttons: [
|
|
{
|
|
text: 'Cancel',
|
|
onTap: function (e) {
|
|
return true;
|
|
}
|
|
},
|
|
{
|
|
text: '<b>Save</b>',
|
|
type: 'button-positive',
|
|
onTap: function (e) {
|
|
return $scope.data.wifi;
|
|
}
|
|
},
|
|
]
|
|
}).then(function (res) {
|
|
console.log('Tapped!', res);
|
|
}, function (err) {
|
|
console.log('Err:', err);
|
|
}, function (msg) {
|
|
console.log('message:', msg);
|
|
});
|
|
|
|
$timeout(function () {
|
|
$ionicPopup.alert({
|
|
title: 'Unable to connect to network'
|
|
}).then(function (res) {
|
|
console.log('Your love for ice cream:', res);
|
|
});
|
|
}, 1000);
|
|
};
|
|
|
|
$scope.showConfirm = function () {
|
|
$ionicPopup.confirm({
|
|
title: 'Consume Ice Cream',
|
|
content: 'Are you sure you want to eat this ice cream?'
|
|
}).then(function (res) {
|
|
if (res) {
|
|
console.log('You are sure');
|
|
} else {
|
|
console.log('You are not sure');
|
|
}
|
|
});
|
|
};
|
|
$scope.showPrompt = function () {
|
|
$ionicPopup.prompt({
|
|
title: 'ID Check',
|
|
subTitle: 'What is your name?'
|
|
}).then(function (res) {
|
|
console.log('Your name is', res);
|
|
});
|
|
};
|
|
$scope.showPasswordPrompt = function () {
|
|
$ionicPopup.prompt({
|
|
title: 'Password Check',
|
|
subTitle: 'Enter your secret password',
|
|
inputType: 'password',
|
|
inputPlaceholder: 'Your password'
|
|
}).then(function (res) {
|
|
console.log('Your name is', res);
|
|
});
|
|
};
|
|
$scope.showAlert = function () {
|
|
$ionicPopup.alert({
|
|
title: 'Don\'t eat that!',
|
|
content: 'That\'s my sandwich'
|
|
}).then(function (res) {
|
|
console.log('Thank you for not eating my delicious ice cream cone');
|
|
});
|
|
};
|
|
}); |