diff --git a/js/angular/directive/actionSheet.js b/js/angular/directive/actionSheet.js
index b618b5dd12..02443d56b4 100644
--- a/js/angular/directive/actionSheet.js
+++ b/js/angular/directive/actionSheet.js
@@ -34,14 +34,14 @@ IonicModule
'
' +
'
' +
'
' +
- '
{{titleText}}
' +
- '
' +
+ '
' +
+ '
' +
'
' +
'
' +
- '' +
+ '' +
'
' +
'
' +
- '' +
+ '' +
'
' +
'
' +
'
' +
diff --git a/js/angular/service/actionSheet.js b/js/angular/service/actionSheet.js
index 05a5b77451..1b60da4136 100644
--- a/js/angular/service/actionSheet.js
+++ b/js/angular/service/actionSheet.js
@@ -24,7 +24,7 @@
* // Show the action sheet
* $ionicActionSheet.show({
* buttons: [
- * { text: 'Share' },
+ * { text: 'Share This' },
* { text: 'Move' },
* ],
* destructiveText: 'Delete',
diff --git a/test/html/actionsheet.html b/test/html/actionsheet.html
index 2ff5d42bf0..a7100c3ee6 100644
--- a/test/html/actionsheet.html
+++ b/test/html/actionsheet.html
@@ -136,12 +136,12 @@
$scope.show = function() {
$ionicActionSheet.show({
buttons: [
- { text: 'Share' },
- { text: 'Move' },
+ { text: 'Share ' },
+ { text: 'Move ' },
],
- destructiveText: 'Delete',
- titleText: 'Modify your album',
- cancelText: 'Cancel',
+ destructiveText: 'Delete ',
+ titleText: 'Modify your album ',
+ cancelText: 'Cancel ',
cancel: function() {
console.log('CANCELLED');
},