如何连接AngularStrap模态显示事件

时间:2015-06-18 20:18:02

标签: javascript modal-dialog angular-strap

我的模态显示得很好。我试图弄清楚如何在显示模态时运行一个函数。

 var = loginModal = $modal({ placement: 'left', title: '', content: webauth, show: false });

 $scope.$on('modal.show', function () {
        console.log("SHOWN");
        debugger;
    });

    $scope.showModal = function () {

        loginModal.$promise
            .then(loginModal.show);

    };

我期待$ scope($#on;' modal.show')在显示模态时触发,但到目前为止没有运气。

1 个答案:

答案 0 :(得分:1)

试试这个:

$scope.showModal = function() {
    myModal.$promise.then(myModal.show).then(function(){
        console.info('shown');
    });
};