From 837f8654bdb6535f6f8e3017e017c6fb0e4c8d90 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))