File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -67,23 +67,23 @@ var POPUP_TPL =
67
67
* }
68
68
* ]
69
69
* });
70
- *
70
+ *
71
71
* myPopup.then(function(res) {
72
72
* console.log('Tapped!', res);
73
73
* });
74
- *
74
+ *
75
75
* $timeout(function() {
76
76
* myPopup.close(); //close the popup after 3 seconds for some reason
77
77
* }, 3000);
78
78
* };
79
- *
79
+ *
80
80
* // A confirm dialog
81
81
* $scope.showConfirm = function() {
82
82
* var confirmPopup = $ionicPopup.confirm({
83
83
* title: 'Consume Ice Cream',
84
84
* template: 'Are you sure you want to eat this ice cream?'
85
85
* });
86
- *
86
+ *
87
87
* confirmPopup.then(function(res) {
88
88
* if(res) {
89
89
* console.log('You are sure');
@@ -99,7 +99,7 @@ var POPUP_TPL =
99
99
* title: 'Don\'t eat that!',
100
100
* template: 'It might taste good'
101
101
* });
102
- *
102
+ *
103
103
* alertPopup.then(function(res) {
104
104
* console.log('Thank you for not eating my delicious ice cream cone');
105
105
* });
You can’t perform that action at this time.
0 commit comments