From 01d0eb5f8b8389839105dba07d4f04a87e4fdba6 Mon Sep 17 00:00:00 2001 From: Gehad Elrobey Date: Wed, 17 Sep 2014 13:29:20 +0300 Subject: [PATCH] HTML: fix typo in dive counter adds a missing space to dive counter. Fixes #722 Signed-off-by: Gehad elrobey Signed-off-by: Dirk Hohndel --- 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 6f32ed493..9441e1fef 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; } /**