diff --git a/.gitignore b/.gitignore
index cac3d80..73504b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
public/bundle*
+node_modules
diff --git a/src/App.html b/src/App.html
index 60f975f..80eb9ab 100755
--- a/src/App.html
+++ b/src/App.html
@@ -2,7 +2,7 @@
{{#each arrayToDisplay as id}}
-
+
- {{id}}: top is {{idToTop[id]}}
{{/each}}
@@ -10,7 +10,7 @@
\ No newline at end of file
+
diff --git a/src/Top.html b/src/Top.html
index 3241dae..82e5f65 100755
--- a/src/Top.html
+++ b/src/Top.html
@@ -9,6 +9,11 @@
window.addEventListener('scroll', listener)
this.set({ listener })
this.updateTop()
+
+ this.observe('key', id => {
+ console.log('detected id change to', id)
+ this.updateTop()
+ })
},
ondestroy() {
const listener = this.get('listener')