diff options
author | Gehad Elrobey <gehadelrobey@gmail.com> | 2014-09-17 13:29:20 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-09-18 06:30:36 -0700 |
commit | 01d0eb5f8b8389839105dba07d4f04a87e4fdba6 (patch) | |
tree | 91f6dd39f39c560100dafdb529c3a3745ec40cd7 /theme/list_lib.js | |
parent | 99011694853a5c19d20fe8e3c74980d958760a03 (diff) | |
download | subsurface-01d0eb5f8b8389839105dba07d4f04a87e4fdba6.tar.gz |
HTML: fix typo in dive counter
adds a missing space to dive counter.
Fixes #722
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'theme/list_lib.js')
-rw-r--r-- | theme/list_lib.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; } /** |