Skip to content

Commit 070b716

Browse files
committed
jsHint
1 parent 3857ec9 commit 070b716

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

js/angular/service/popup.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,23 @@ var POPUP_TPL =
6767
* }
6868
* ]
6969
* });
70-
*
70+
*
7171
* myPopup.then(function(res) {
7272
* console.log('Tapped!', res);
7373
* });
74-
*
74+
*
7575
* $timeout(function() {
7676
* myPopup.close(); //close the popup after 3 seconds for some reason
7777
* }, 3000);
7878
* };
79-
*
79+
*
8080
* // A confirm dialog
8181
* $scope.showConfirm = function() {
8282
* var confirmPopup = $ionicPopup.confirm({
8383
* title: 'Consume Ice Cream',
8484
* template: 'Are you sure you want to eat this ice cream?'
8585
* });
86-
*
86+
*
8787
* confirmPopup.then(function(res) {
8888
* if(res) {
8989
* console.log('You are sure');
@@ -99,7 +99,7 @@ var POPUP_TPL =
9999
* title: 'Don\'t eat that!',
100100
* template: 'It might taste good'
101101
* });
102-
*
102+
*
103103
* alertPopup.then(function(res) {
104104
* console.log('Thank you for not eating my delicious ice cream cone');
105105
* });

0 commit comments

Comments
 (0)