diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2014-08-15 11:55:44 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-17 12:03:19 -0600 |
commit | 1494ea97273273ad6e5a70ab29d382d221b16988 (patch) | |
tree | 32a9966f2678616fb3571189049c0b64b31cebad /theme/list_lib.js | |
parent | 9194a43fd42b65d630f207361813b9439ee761d5 (diff) | |
download | subsurface-1494ea97273273ad6e5a70ab29d382d221b16988.tar.gz |
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>
Diffstat (limited to 'theme/list_lib.js')
-rw-r--r-- | theme/list_lib.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index 9327bbc4a..3b8dbc4ed 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -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) |