Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Commit

Permalink
Update for removal of markdown blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
process-bot committed Dec 3, 2014
1 parent d3bc436 commit ea99e61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion elm-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
6 changes: 4 additions & 2 deletions frontend/debuggerInterface.elm
Original file line number Diff line number Diff line change
Expand Up @@ -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 (..)
Expand Down Expand Up @@ -341,7 +342,7 @@ roundedSquare side radius toForm =
--

noWatches : Element
noWatches = [markdown|
noWatches = Markdown.toElement """
### <span style="font-family: Gotham, Futura, 'Lucida Grande', sans-serif; font-size: 12pt; color: rgb(170,170,170)"> You don't have any watches! </span>
Expand All @@ -354,6 +355,7 @@ to show any value. <br>
<span style="font-family: Gotham, Futura, 'Lucida Grande', sans-serif; font-size: 10pt; color: rgb(170,170,170)">
Use [<span style="text-decoration:underline; color: rgb(170,170,170)">Debug.watchSummary</span>](http://library.elm-lang.org/catalog/elm-lang-Elm/latest/Debug#watchSummary) to show a <br>
summary or subvalue of any value. </span><br>
|]
"""


0 comments on commit ea99e61

Please sign in to comment.