Skip to content
Snippets Groups Projects
Commit 331213d9 authored by Carlos Vega's avatar Carlos Vega
Browse files

addewd comments

parent ea962911
No related branches found
No related tags found
1 merge request!250Virus visit column changes
......@@ -307,11 +307,13 @@ function createTable(params) {
$(this).html('<select style="width:100px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option><option value="null">N/A</option><option value="inconclusive">Inconclusive</option></select>');
});
//make columns of virus test date wider
$(tableElement).find('tfoot div[name="virus_test_date"]').each(function () {
$(this).css('width', '100px');
$(this).text('');
});
//replace the hyphen with non breaking space hyphen to ensure the column names are more readable
$(tableElement).find('th:contains("RT-PCR")').each(function(){
non_breaking_hyphen = $.parseHTML('&#8209;');
var text = $(this).text().replace('-', $(non_breaking_hyphen).text());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment