From 735a045d2cb021d9fbbd1b87f42fb66c03c492ef Mon Sep 17 00:00:00 2001 From: Joseph Orbegoso Pea Date: Tue, 3 May 2016 17:16:36 -0700 Subject: [PATCH] Disable the rawModHtml call, as it's not working. https://github.com/meteorhacks/meteor-inject-initial/issues/19 --- server/main.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/server/main.js b/server/main.js index 55287c296..aa244818b 100644 --- a/server/main.js +++ b/server/main.js @@ -1,9 +1,10 @@ // TODO: doesn't work. See https://github.com/meteorhacks/meteor-inject-initial/issues/18 -Inject.rawModHtml('raf-timeout', function(html, res) { - console.log(' ------ HTML', html) - return html + "" -}) +//Inject.rawModHtml('raf-timeout', function(html, res) { + //console.log(' ------ ARGS', arguments) + //res.end(html + "") + //return html +//}) function sleep(duration) { return new Promise(r => setTimeout(r, duration))