This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #js-other-comments{ | |
| padding: 5px; | |
| border-top: 1px solid #C0C0C0; | |
| } | |
| #js-other-comments a{ | |
| padding: 5px 7px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| var HOURS_PER_DAY = 8; | |
| //locate the table, find the table rows, but skip the first row since it's the header | |
| $("table[id$='gvBalances_DXMainTable']") | |
| .find("> tbody >tr") | |
| .not(":first") | |
| .each(function(){ | |
| //loop though each row here (there's probably only one though) | |
| $(this).children().each(function(i){ |