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:
Anton Lundin 2015-06-17 21:46:37 +02:00 committed by Dirk Hohndel
parent befa8cf32e
commit 00db47b19e

View file

@ -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');
} }
/** /**