Commit e26349c7 by Takumi Imai

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

parent 2ebd84bc
...@@ -26,12 +26,6 @@ ...@@ -26,12 +26,6 @@
<script type="text/javascript" src="../js/template/template.js"></script> <script type="text/javascript" src="../js/template/template.js"></script>
<script src="../js/reportForm/reportForm.js?__UPDATEID__"></script> <script src="../js/reportForm/reportForm.js?__UPDATEID__"></script>
<script type="text/javascript">
$(document).ready(function () {
RF.init();
COMMON.closeLoading();
});
</script>
</head> </head>
<body> <body>
......
...@@ -6,17 +6,26 @@ ...@@ -6,17 +6,26 @@
var RF = {}; var RF = {};
RF.addReportFlg; RF.addReportFlg;
RF.interval = setInterval(RF.init(), 500);
/** /**
* init * init
*/ */
RF.init = function () { RF.init = function () {
COMMON.showLoading(); COMMON.showLoading();
let count = 0;
if (new COMMON.sysSetting() != null) {
clearInterval(set_interval_id);
} else {
count++;
if (count >= 5) {
clearInterval(set_interval_id);
COMMON.goUrlWithCurrentParams(CONSTANT.PAGE_NAME.LOGIN);
}
return;
}
//Check if user is logged in //Check if user is logged in
// for COMMON.sysSetting()
setTimeout(function () {
COMMON.checkAuth(false); COMMON.checkAuth(false);
}, 1000);
COMMON.checkQuickReport(function (result) { COMMON.checkQuickReport(function (result) {
if (result) { if (result) {
RF.addReportFlg = result.addReportFlg; RF.addReportFlg = result.addReportFlg;
......
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