diff options
Diffstat (limited to 'theme')
-rw-r--r-- | theme/list_lib.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index b19c2eafe..a6f1fcb71 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -179,7 +179,7 @@ function getlimited (dive) { }; function getExpanded (dive) { - return '<table><tr><td class="words">Date: </td><td>'+dive.date+ + var res = '<table><tr><td class="words">Date: </td><td>'+dive.date+ '</td><td class="words">     Time: </td><td>'+dive.time + '</td><td class="words">     Location: </td><td>'+'<a onclick=\"Search_list_Modules(\''+dive.location+'\')\">'+ dive.location +'</a>'+ @@ -192,8 +192,11 @@ function getExpanded (dive) { '</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)+ - '</td></tr></table><div style="margin:10px;"><p class="words">Notes: </p>' + dive.notes +'</div>'+ - '<center><a onclick="showDiveDetails('+dive.number+')">show more details</a></center>'; + '</td></tr></table><div style="margin:10px;"><p class="words">Notes: </p>' + dive.notes +'</div>'; + if(settings.listOnly==='0'){ + res += '<center><a onclick="showDiveDetails('+dive.number+')">show more details</a></center>'; + } + return res; }; function putTags(tags){ |