summaryrefslogtreecommitdiffstats
path: root/theme
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2015-06-17 21:46:37 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-17 16:37:58 -0700
commit00db47b19e1621455978775b2ea148b0c120b229 (patch)
tree8bb8ec614b4e2eef422397c3a2a6395c37942a9e /theme
parentbefa8cf32e28b9520ed71a70655599b3c640f9d2 (diff)
downloadsubsurface-00db47b19e1621455978775b2ea148b0c120b229.tar.gz
Remove old timing of function
Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'theme')
-rw-r--r--theme/list_lib.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js
index afaa77ad0..17f52061d 100644
--- a/theme/list_lib.js
+++ b/theme/list_lib.js
@@ -134,14 +134,12 @@ function view_pagging(start, end)
*/
function expandAll()
{
- console.time('expnadAll');
for (var i = start; i < start + sizeofpage; i++) {
if (i >= itemsToShow.length)
break;
unexpand(document.getElementById(itemsToShow[i]));
items[itemsToShow[i]].expanded = false;
}
- console.timeEnd('expnadAll');
}
/**