my eye

Remove SPA loading indicator

Committed 635a0b

--- a/web.ts/index.ts
+++ b/web.ts/index.ts

 }
 
 export const updateArticle = (url, scroll) => {
-    _("#loading")['el'].style.display = "block"
+    // XXX _("#loading")['el'].style.display = "block"
     const xhr = new XMLHttpRequest()
     xhr.open("GET", url)
     xhr.setRequestHeader("X-Chromeless", "1")
         if (h1)
             title = h1.textContent + "\u2009\u2014\u2009" + title
         window.document.title = title
-        _("#loading")['el'].style.display = "none"
+        // XXX _("#loading")['el'].style.display = "none"
     }
     /* xhr.onprogress = function() {
         // progress on transfers from the server to the client (downloads)

--- a/web/framework/static/web.js
+++ b/web/framework/static/web.js