mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
HTML: Make SAC, OTU and CNS in uppercase letters.
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
9194a43fd4
commit
1494ea9727
1 changed files with 3 additions and 3 deletions
|
@ -944,9 +944,9 @@ function get_dive_HTML(dive)
|
|||
*/
|
||||
function get_status_HTML(dive)
|
||||
{
|
||||
return '<h2 class="det_hed">' + translate.Dive_Status + '</h2><table><tr><td class="words">Sac: </td><td>' + ml_to_litre(dive.sac) +
|
||||
' l/min' + '</td><td class="words"> Otu: </td><td>' + dive.otu +
|
||||
'</td><td class="words"> Cns: </td><td>' + dive.cns + '</td></tr></table>';
|
||||
return '<h2 class="det_hed">' + translate.Dive_Status + '</h2><table><tr><td class="words">SAC: </td><td>' + ml_to_litre(dive.sac) +
|
||||
' l/min' + '</td><td class="words"> OTU: </td><td>' + dive.otu +
|
||||
'</td><td class="words"> CNS: </td><td>' + dive.cns + '</td></tr></table>';
|
||||
};
|
||||
|
||||
function get_dive_photos(dive)
|
||||
|
|
Loading…
Reference in a new issue