From 284d554a67664e81c843f72d20e091522b8f9968 Mon Sep 17 00:00:00 2001 From: Mickael Kerjean Date: Sun, 5 May 2019 00:08:41 +1000 Subject: [PATCH] fix (loader): fix the transition out when the application has loaded --- client/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/index.js b/client/index.js index b03a4bd6..2f54b4e5 100644 --- a/client/index.js +++ b/client/index.js @@ -10,7 +10,7 @@ window.addEventListener("DOMContentLoaded", () => { const className = 'ontouchstart' in window ? 'touch-yes' : 'touch-no'; document.body.classList.add(className); - const $loader = document.querySelector("#nyan_loader"); + const $loader = document.querySelector("#n-lder"); function render(){ ReactDOM.render(, document.getElementById("main"));