From 255a7efe33839ea2fc3eb964e0f307e0bcc599fe Mon Sep 17 00:00:00 2001 From: Gehad elrobey <[email protected]> Date: Wed, 17 Sep 2014 12:54:26 +0300 Subject: [PATCH 1/2] HTML: fix typo in dive counter
adds a missing space to dive counter. Fixes #722 Signed-off-by: Gehad elrobey <[email protected]> --- theme/list_lib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/list_lib.js b/theme/list_lib.js index 775d83e..3c9f3e0 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -126,7 +126,7 @@ function next_page() function view_pagging(start, end) { var page = document.getElementById("pagging"); - page.innerHTML = (start + 1) + ' to ' + (end + 1) + ' of ' + (itemsToShow.length) + '' + translate.dives; + page.innerHTML = (start + 1) + ' to ' + (end + 1) + ' of ' + (itemsToShow.length) + ' ' + translate.dives; } /** -- 1.9.1
_______________________________________________ subsurface mailing list [email protected] http://lists.hohndel.org/cgi-bin/mailman/listinfo/subsurface
