我正在使用$ionicActionSheet
并在其下方(在它打开之前)有textarea。当用户点击$ionicActionSheet
中的按钮时,它也会将焦点带到下面的<textarea>
并打开键盘。有没有办法停止$ionicActionSheet
?
$ionicActionSheet.show({
buttons: [{
text: 'Camera'
}, {
text: 'Photo Library'
}],
destructiveText: 'Cancel',
destructiveButtonClicked: function() {
//
// How do I get access to the click event?
$event.stopPropagation();
//
//
return true;
},
buttonClicked: function(index) {
//
// How do I get access to the click event?
$event.stopPropagation();
//
//
if(index == 0) {
$scope.TakePicture("camera");
} else {
$scope.TakePicture("library");
}
return true;
}
});