diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-07-14 20:57:26 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-14 21:38:22 -0700 |
commit | 3bbac30c1b12864ebcce8d086dd5d96de3872ff9 (patch) | |
tree | 99a87f9517a421a0b5b572f328cc5f0c1f6b4293 /theme | |
parent | 5723cfc1d09a2722740c135dde1dd8409ad6bdb8 (diff) | |
download | subsurface-3bbac30c1b12864ebcce8d086dd5d96de3872ff9.tar.gz |
Terminate named character references properly
must be terminated with semicolon, just like any other named
character reference
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 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index 899f059dc..6ba366043 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -205,14 +205,14 @@ function getlimited(dive) function getExpanded(dive) { 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 + '\')\">' + + '</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>' + '</td></tr></table><table><tr><td class="words">Rating:</td><td>' + putRating(dive.rating) + - '</td><td class="words">   Visibilty:</td><td>' + putRating(dive.visibility) + + '</td><td class="words"> Visibilty:</td><td>' + putRating(dive.visibility) + '</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><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><tr><td class="words"><p>Buddy: </p></td><td>' + dive.buddy + '</td></tr><tr><td class="words">Suit: </td><td>' + dive.suit + @@ -741,14 +741,14 @@ function get_bookmarks_HTML(dive) function get_dive_HTML(dive) { return '<h2 class="det_hed">Dive Information</h2><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 + '\')\">' + + '</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>' + '</td></tr></table><table><tr><td class="words">Rating:</td><td>' + putRating(dive.rating) + - '</td><td class="words">   Visibilty:</td><td>' + putRating(dive.visibility) + + '</td><td class="words"> Visibilty:</td><td>' + putRating(dive.visibility) + '</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><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><tr><td class="words"><p>Buddy: </p></td><td>' + dive.buddy + '</td></tr><tr><td class="words">Suit: </td><td>' + dive.suit + @@ -762,8 +762,8 @@ function get_dive_HTML(dive) function get_status_HTML(dive) { return '<h2 class="det_hed">Dive Status</h2><table><tr><td class="words">Sac: </td><td>' + dive.sac + - '</td><td class="words">     Otu: </td><td>' + dive.otu + - '</td><td class="words">     Cns: </td><td>' + dive.cns + + '</td><td class="words"> Otu: </td><td>' + dive.otu + + '</td><td class="words"> Cns: </td><td>' + dive.cns + '</td></tr></table>'; }; |