我在我的代码中插入了mdBottomSheet show和打开它的按钮。
这是我的mdBottomSheet代码:
$scope.selectPhoto = function () {
var options = {
templateUrl: 'student-details/camera-buttons.tpl.html',
scope: $scope
};
$mdBottomSheet.show(options);
}
这是我的按钮:
<div layout="row" class="imageUpload" ng-hide="fileUri == undefined" ng-click="selectPhoto()">
<div class="image" flex="15"><img src="images/photo-icon.png"/></div>
</div>
单击按钮后显示的mdBottomSheet但是当mdButtonSheet隐藏时 我不能再点击按钮,它不会激活我的功能selectPhoto()... 实际上当我点击按钮时它什么都不做。
我能做什么?