我的模态显示得很好。我试图弄清楚如何在显示模态时运行一个函数。
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')在显示模态时触发,但到目前为止没有运气。
答案 0 :(得分:1)
试试这个:
$scope.showModal = function() {
myModal.$promise.then(myModal.show).then(function(){
console.info('shown');
});
};