Commit 23a816fb by Takatoshi Miura

iOSコードレビュー対応

parent 76fa1d17
...@@ -2998,11 +2998,21 @@ CHK.createOperationList = function(operationList, isSearched = false) { ...@@ -2998,11 +2998,21 @@ CHK.createOperationList = function(operationList, isSearched = false) {
} }
for (var i = 0; i < operationList.length; i++) { for (var i = 0; i < operationList.length; i++) {
var operationTR; var operationTR;
if(operationList[i].needSyncFlg == 1){
operationTR = $("<tr class= 'update'/>"); if (CHK.isIOS) {
}else{ if (operationList[i].needSyncFlag == 1) {
operationTR = $("<tr/>"); operationTR = $("<tr class= 'update'/>");
} else {
operationTR = $("<tr/>");
}
} else {
if(operationList[i].needSyncFlg == 1){
operationTR = $("<tr class= 'update'/>");
} else{
operationTR = $("<tr/>");
}
} }
//TODO aタグlist.html 転移処理 //TODO aタグlist.html 転移処理
var operationNameTd; var operationNameTd;
if (operationList[i].permitCodeRequiredFlg == 1) { if (operationList[i].permitCodeRequiredFlg == 1) {
......
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