浏览代码

AMBARI-14145. Autologout counts down till -1.(xiwang)

Xi Wang 9 年之前
父节点
当前提交
ac42d479c2
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      ambari-web/app/controllers/main.js

+ 3 - 1
ambari-web/app/controllers/main.js

@@ -249,7 +249,9 @@ App.MainController = Em.Controller.extend({
               setInterval(function(){self.countDown();}, 1000)
             },
             countDown: function() {
-              this.set('remainTime', this.get('remainTime') - 1);
+              if (this.get('remainTime') > 0) {
+                this.set('remainTime', this.get('remainTime') - 1);
+              }
               if (this.get('remainTime') == 0) {
                 App.router.logOff({});
               }