Make the expand/collapse buttons usefull on trips

There where some issues with trying to access non-existing dom elements
when clicking them when showing trips.

Instead of fixing that issue, this actually makes them do something
useful, expanding and collapsing the trips.

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2015-06-17 21:46:38 +02:00 committed by Dirk Hohndel
parent 00db47b19e
commit cfd001702f

View file

@ -134,6 +134,12 @@ function view_pagging(start, end)
*/
function expandAll()
{
if (tripsShown) {
for (var i = 0 ; i < trips.length ; i++) {
if (trips[i].expanded === false)
expand_trip(i);
}
} else {
for (var i = start; i < start + sizeofpage; i++) {
if (i >= itemsToShow.length)
break;
@ -141,12 +147,19 @@ function expandAll()
items[itemsToShow[i]].expanded = false;
}
}
}
/**
*Collapse all dives in the view.
*/
function collapseAll()
{
if (tripsShown) {
for (var i = 0 ; i < trips.length ; i++) {
if (trips[i].expanded === true)
unexpand_trip(i);
}
} else {
for (var i = start; i < start + sizeofpage; i++) {
if (i >= itemsToShow.length)
break;
@ -154,6 +167,7 @@ function collapseAll()
items[itemsToShow[i]].expanded = true;
}
}
}
function setNumberOfDives(e)
{