From ea99e6199dab98891e22be5b19ed566c1ec06fef Mon Sep 17 00:00:00 2001 From: Evan Czaplicki Date: Tue, 2 Dec 2014 22:55:20 -0800 Subject: [PATCH] Update for removal of markdown blocks --- elm-package.json | 3 ++- frontend/debuggerInterface.elm | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/elm-package.json b/elm-package.json index d8f23cc..b41b658 100644 --- a/elm-package.json +++ b/elm-package.json @@ -9,6 +9,7 @@ "exposed-modules": [], "native-modules": true, "dependencies": { - "elm-lang/core": "1.0.0 <= v < 2.0.0" + "elm-lang/core": "1.0.0 <= v < 2.0.0", + "evancz/elm-markdown": "1.0.0 <= v < 2.0.0" } } \ No newline at end of file diff --git a/frontend/debuggerInterface.elm b/frontend/debuggerInterface.elm index 2b4daaa..ce28e23 100644 --- a/frontend/debuggerInterface.elm +++ b/frontend/debuggerInterface.elm @@ -6,6 +6,7 @@ import Graphics.Element (..) import Graphics.Element as GE import Graphics.Input (..) import List +import Markdown import Signal import Signal (Signal, (<~), (~)) import Slider (..) @@ -341,7 +342,7 @@ roundedSquare side radius toForm = -- noWatches : Element -noWatches = [markdown| +noWatches = Markdown.toElement """ ### You don't have any watches! @@ -354,6 +355,7 @@ to show any value.
Use [Debug.watchSummary](http://library.elm-lang.org/catalog/elm-lang-Elm/latest/Debug#watchSummary) to show a
summary or subvalue of any value.

-|] + +"""