如何在Ionic确认弹出窗口中限制后台单击

时间:2017-04-04 06:10:13

标签: angularjs ionic-framework

我是离子的新手。我已经创建了确认弹出窗口。我需要通过单击按钮打开一次弹出窗口。如果已打开弹出窗口,则必须限制后台单击但是在这里我可以点击按钮,如果已打开弹出窗口。因此需要限制后台点击并避免多次打开弹出窗口。请帮我解决这个问题。提前致谢。我提到了我的代码。

<button ng-click="click()"></button>

$scope.click = function(){
$scope.stopService();``
}
    //Stop service confirm popup
    $scope.stopService = function () {
        var confirmPopup = $ionicPopup.confirm({
            title: 'Confirmation',
            template: 'Are you sure do you want to stop the current service?'
        });

        confirmPopup.then(function (res) {
            if (res) {              

            } else {                    

            }
        });    
    };

0 个答案:

没有答案