我的 Angular 应用程序中有一个剑道模式窗口。有时我会在一秒钟后自动关闭窗口。在那些时候,我想隐藏关闭 [x] 按钮,但在其他时候,不是。可以在开窗前完成吗?
if (autoCloseDelay) {
// hide the close [x] button here ??
$timeout( function() {
$scope.modalWindow.close();
}, autoCloseDelay, $scope);
}
$scope.modalWindow.open();