Commit 39622b8b by hoangson

fix CHK_pu undefined

parent a2cd83c2
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
<link rel="stylesheet" type="text/css" href="css/style.css"> <link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery-1.11.2.min.js?__UPDATEID__"></script> <script src="js/jquery-1.11.2.min.js?__UPDATEID__"></script>
<script src="script/check.js?__UPDATEID__"></script> <script src="script/check.js?__UPDATEID__"></script>
<script src="script/check_pu.js?__UPDATEID__"></script>
<script src="script/check-list.js?__UPDATEID__"></script> <script src="script/check-list.js?__UPDATEID__"></script>
<script src="script/check-foriOS.js"></script> <script src="script/check-foriOS.js"></script>
<script src="script/constant.js?__UPDATEID__"></script> <script src="script/constant.js?__UPDATEID__"></script>
......
...@@ -644,7 +644,9 @@ CHK.initOperationList = function() { ...@@ -644,7 +644,9 @@ CHK.initOperationList = function() {
//作業一覧描画 //作業一覧描画
console.log("json.operationList",JSON.stringify( json.operationList) ); console.log("json.operationList",JSON.stringify( json.operationList) );
CHK.createOperationList(CHK.operation.operationList); CHK.createOperationList(CHK.operation.operationList);
CHK_pu.initOperationList(CHK.operation.operationList); if (typeof CHK_pu !== 'undefined') {
CHK_pu.initOperationList(CHK.operation.operationList);
}
}); });
// コミュニケーションデータJSONデータ // コミュニケーションデータJSONデータ
......
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