Commit f0cd9c43 by Kim Eunchul

インデント整列

parent 361c5083
...@@ -414,34 +414,33 @@ CHK.initReport = function(callback) { ...@@ -414,34 +414,33 @@ CHK.initReport = function(callback) {
* @param callback コールバック * @param callback コールバック
*/ */
CHK.initReportApp = function (callback) { CHK.initReportApp = function (callback) {
CHK.isSearched = false; CHK.isSearched = false;
CHK.operationGroupMasterId = 0; CHK.operationGroupMasterId = 0;
// 作業一覧JSONデータ // 作業一覧JSONデータ
CHK.loadJson(CHK.jsonPath.operationList, function (json) { CHK.loadJson(CHK.jsonPath.operationList, function (json) {
CHK.operation = json; CHK.operation = json;
$('#operationTable').empty(); $('#operationTable').empty();
CHK.operation.searchOperationList = json.operationList; CHK.operation.searchOperationList = json.operationList;
//作業一覧描画 //作業一覧描画
CHK.createOperationList(CHK.operation.operationList); CHK.createOperationList(CHK.operation.operationList);
//カテゴリー高さ固定 //カテゴリー高さ固定
}); });
// カテゴリーJSONデータ
// カテゴリーJSONデータ CHK.loadJson(CHK.jsonPath.operationGroupMasterList, function (json) {
CHK.loadJson(CHK.jsonPath.operationGroupMasterList, function (json) {
CHK.operationGroupMaster = json; CHK.operationGroupMaster = json;
//カテゴリー設定 //カテゴリー設定
CHK.createCategory(CHK.operationGroupMaster.operationGroupMasterList); CHK.createCategory(CHK.operationGroupMaster.operationGroupMasterList);
}); });
// 作業・カテゴリー関係JSONデータ // 作業・カテゴリー関係JSONデータ
CHK.loadJson(CHK.jsonPath.operationGroupMasterRelationList, function (json) { CHK.loadJson(CHK.jsonPath.operationGroupMasterRelationList, function (json) {
CHK.operationGroupMasterRelation = json; CHK.operationGroupMasterRelation = json;
}); });
// コミュニケーションデータJSONデータ // コミュニケーションデータJSONデータ
CHK.loadJson(CHK.jsonPath.pushMessageList, function (json) { CHK.loadJson(CHK.jsonPath.pushMessageList, function (json) {
}); });
//カテゴリー高さ固定 //カテゴリー高さ固定
setTimeout(function(){ setTimeout(function(){
CHK.setCategoryHeight(); CHK.setCategoryHeight();
......
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