From 8d91c3a08d21a369ef24340a1b30160eebd3bc7a Mon Sep 17 00:00:00 2001
From: Nolan Lawson <nolan@nolanlawson.com>
Date: Tue, 16 Jan 2018 17:47:25 -0800
Subject: [PATCH] remove console.logs

---
 routes/_components/VirtualList.html     | 2 --
 routes/_components/VirtualListItem.html | 1 -
 routes/_utils/virtualListStore.js       | 1 -
 3 files changed, 4 deletions(-)

diff --git a/routes/_components/VirtualList.html b/routes/_components/VirtualList.html
index 89c02d5..8bbee0e 100644
--- a/routes/_components/VirtualList.html
+++ b/routes/_components/VirtualList.html
@@ -24,13 +24,11 @@
   export default {
     oncreate () {
       this.observe('innerHeight', throttle(innerHeight => {
-        //console.log('setting innerHeight', innerHeight)
         this.store.set({
           innerHeight: innerHeight
         })
       }, THROTTLE_TIME))
       this.observe('items', (items) => {
-        //console.log('setting items')
         this.store.set({
           'items': items
         })
diff --git a/routes/_components/VirtualListItem.html b/routes/_components/VirtualListItem.html
index 519a9e3..8f8897f 100644
--- a/routes/_components/VirtualListItem.html
+++ b/routes/_components/VirtualListItem.html
@@ -15,7 +15,6 @@
 
   export default {
     oncreate() {
-      'VirtualListItem: oncreate'
       let itemHeights = this.store.get('itemHeights')
       let key = this.get('key')
       itemHeights[key] = this.refs.node.offsetHeight
diff --git a/routes/_utils/virtualListStore.js b/routes/_utils/virtualListStore.js
index 41ef947..095bab0 100644
--- a/routes/_utils/virtualListStore.js
+++ b/routes/_utils/virtualListStore.js
@@ -22,7 +22,6 @@ virtualListStore.compute('visibleItems',
     let height = itemHeights[key] || 0
     let currentOffset = totalOffset
     totalOffset += height
-    //console.log(key, 'scrollTop', scrollTop, 'currentOffset', currentOffset, 'innerHeight', innerHeight)
     let isBelowViewport = (currentOffset < scrollTop)
     if (isBelowViewport) {
       if (scrollTop - renderBuffer > currentOffset) {