mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Remove old timing of function
Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
befa8cf32e
commit
00db47b19e
1 changed files with 0 additions and 2 deletions
|
@ -134,14 +134,12 @@ function view_pagging(start, end)
|
||||||
*/
|
*/
|
||||||
function expandAll()
|
function expandAll()
|
||||||
{
|
{
|
||||||
console.time('expnadAll');
|
|
||||||
for (var i = start; i < start + sizeofpage; i++) {
|
for (var i = start; i < start + sizeofpage; i++) {
|
||||||
if (i >= itemsToShow.length)
|
if (i >= itemsToShow.length)
|
||||||
break;
|
break;
|
||||||
unexpand(document.getElementById(itemsToShow[i]));
|
unexpand(document.getElementById(itemsToShow[i]));
|
||||||
items[itemsToShow[i]].expanded = false;
|
items[itemsToShow[i]].expanded = false;
|
||||||
}
|
}
|
||||||
console.timeEnd('expnadAll');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue