Ignore:
Timestamp:
06/29/20 12:20:50 (4 years ago)
Author:
yushan
Message:

trunk : update html

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/xios_test_suite/HTML/generate_compile_table.js

    r1814 r1913  
     1var compile_dict={"-1": "❌", "1": "✅"} 
    12function generateCompileTable() 
    23{ 
     
    224225          if(part_compile_info[k][2] == tmp_arch_list[j] && part_compile_info[k][3] == tmp_mode_list[i]) 
    225226          { 
    226             myCell.innerHTML = (part_compile_info[k][4]) 
     227            myCell.innerHTML = compile_dict[part_compile_info[k][4]] 
    227228            break 
    228229          } 
Note: See TracChangeset for help on using the changeset viewer.