Commit a8ef0dfa by Takumi Imai

#50850 Edgeだと作業が開かない

parent a486be7b
......@@ -26,6 +26,11 @@
<script type="text/javascript" src="../js/template/template.js"></script>
<script src="../js/reportForm/reportForm.js?__UPDATEID__"></script>
<script type="text/javascript">
$(document).ready(function () {
RF.init();
});
</script>
</head>
<body>
......
......@@ -11,20 +11,11 @@ RF.addReportFlg;
* init
*/
RF.init = function () {
let count = 0;
if (new COMMON.sysSetting() != null) {
clearInterval(RF.interval);
} else {
count++;
if (count >= 5) {
clearInterval(RF.interval);
COMMON.goUrlWithCurrentParams(CONSTANT.PAGE_NAME.LOGIN);
}
return;
}
COMMON.showLoading();
//Check if user is logged in
setTimeout(function () {
COMMON.checkAuth(false);
}, 2000);
COMMON.checkQuickReport(function (result) {
if (result) {
RF.addReportFlg = result.addReportFlg;
......@@ -33,8 +24,6 @@ RF.init = function () {
RF.loadCommon();
};
RF.interval = setInterval(RF.init(), 1000);
/**
* load common
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment