mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 20:16:16 +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)
|
function view_pagging(start, end)
|
||||||
{
|
{
|
||||||
var page = document.getElementById("pagging");
|
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…
Add table
Reference in a new issue