From db7e3f618fb90859efc99b050d0c1ff544c2202d Mon Sep 17 00:00:00 2001 From: Michael Sondergaard Date: Thu, 31 Oct 2013 14:47:31 +0100 Subject: [PATCH] Fix whitespace in Init.js --- runtime/Init.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/Init.js b/runtime/Init.js index 104d31a..277a253 100644 --- a/runtime/Init.js +++ b/runtime/Init.js @@ -152,11 +152,11 @@ function initGraphics(elm, Module) { signalGraph = Signal.constant(signalGraph); } var currentScene = signalGraph.value; - + // Add the currentScene to the DOM var Render = ElmRuntime.use(ElmRuntime.Render.Element); elm.node.appendChild(Render.render(currentScene)); - + // set up updates so that the DOM is adjusted as necessary. function domUpdate(newScene, currentScene) { ElmRuntime.draw(function(_) { @@ -174,4 +174,4 @@ function initGraphics(elm, Module) { return renderer; } -}()); \ No newline at end of file +}());