my eye

Fix escape during keyboard link follow

Committed 819285

--- a/canopy/templates/template.html
+++ b/canopy/templates/template.html

       return
     }
     if (following) {
-      if (ev.key == 'Escape')
+      if (ev.key == 'Escape') {
         hideFollowLinks()
+        return
+      }
       followQueue += ev.key
       if (followList.hasOwnProperty(followQueue)) {
         go(followList[followQueue])