mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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>
This commit is contained in:
parent
9901169485
commit
01d0eb5f8b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue