diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2014-08-07 17:11:42 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-11 08:21:06 -0700 |
commit | a8bca851692f93a252692d7275912628ec910acd (patch) | |
tree | 3964a0dd8cfaa9741a43733df30122c3a3562232 /theme | |
parent | 3ebb62f153c11a123e86d68f0b62998e91162779 (diff) | |
download | subsurface-a8bca851692f93a252692d7275912628ec910acd.tar.gz |
HTML: export dive duration value to the detailed view.
Dive duration value is missing in the dive exports
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')
-rw-r--r-- | theme/list_lib.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index ade54c885..2c915ad6f 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -212,7 +212,8 @@ function getExpanded(dive) '</td></tr></table>' + '<table><tr><td class="words">Air temp: </td><td>' + dive.temperature.air + '</td><td class="words"> Water temp: </td><td>' + dive.temperature.water + - '</td></tr></table><table><tr><td class="words">DiveMaster: </td><td>' + dive.divemaster + + '</td></tr></table><table><tr><td class="words">Duration: </td><td>' + dive.dive_duration + + '</td></tr><tr><td class="words">DiveMaster: </td><td>' + dive.divemaster + '</td></tr><tr><td class="words"><p>Buddy: </p></td><td>' + dive.buddy + '</td></tr><tr><td class="words">Suit: </td><td>' + dive.suit + '</td></tr><tr><td class="words">Tags: </td><td>' + putTags(dive.tags) + @@ -890,7 +891,8 @@ function get_dive_HTML(dive) '</td></tr></table>' + '<table><tr><td class="words">Air temp: </td><td>' + dive.temperature.air + '</td><td class="words"> Water temp: </td><td>' + dive.temperature.water + - '</td></tr></table><table><tr><td class="words">DiveMaster: </td><td>' + dive.divemaster + + '</td></tr></table><table><tr><td class="words">Duration: </td><td>' + dive.dive_duration + + '</td></tr><tr><td class="words">DiveMaster: </td><td>' + dive.divemaster + '</td></tr><tr><td class="words"><p>Buddy: </p></td><td>' + dive.buddy + '</td></tr><tr><td class="words">Suit: </td><td>' + dive.suit + '</td></tr><tr><td class="words">Tags: </td><td>' + putTags(dive.tags) + |