From a0b61e0c2ce4d23fcdf3292097766028b030fd1d Mon Sep 17 00:00:00 2001 From: ohh2ahh Date: Fri, 13 Jun 2014 21:02:20 +0200 Subject: [PATCH] docs(actionSheet): correct show() method example --- js/angular/service/actionSheet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/angular/service/actionSheet.js b/js/angular/service/actionSheet.js index 1332607986..4b8e9f0016 100644 --- a/js/angular/service/actionSheet.js +++ b/js/angular/service/actionSheet.js @@ -22,10 +22,10 @@ * $scope.show = function() { * * // Show the action sheet - * var hideSheet = $ionicActionSheet({ + * var hideSheet = $ionicActionSheet.show({ * buttons: [ * { text: 'Share This' }, - * { text: 'Move' }, + * { text: 'Move' } * ], * destructiveText: 'Delete', * titleText: 'Modify your album',