1
モーダルポップアップウィンドウに角度指令を使用しています。あなたがモバイルデバイスでそれを閉じることができないことが唯一のものです。あなたはその問題を解決するためのヒントをお持ちですか?角モダール - 携帯端末で閉じることができません
.directive('modal', function($uibModal, $rootScope){
return {
restrict: 'A',
scope: false,
link: function($scope, element, attrs){
element.bind('click', function(){
var modalInstance = $uibModal.open({
templateUrl: '/components/modal-wrapper.html',
scope: $scope,
controller: function($scope, $uibModalInstance) {
var $ctrl = this;
$ctrl.close = function (ret) {
$uibModalInstance.close(ret);
};
$rootScope.$on('$stateChangeStart',
function(){
$uibModalInstance.close();
}
);
$scope.close = $ctrl.close;
$scope.template = attrs.template;
},
controllerAs: '$ctrl'
});
});
}
}
})