Skip to content

Commit 2603e43

Browse files
Added some comments to help when moving these to elm-reactor
1 parent 29aba15 commit 2603e43

File tree

5 files changed

+21
-2
lines changed

5 files changed

+21
-2
lines changed

src/examples/case.elm

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ primitiveNumbers =
4242
, primitiveCount 5
4343
, primitiveCount 6
4444
, primitiveCount 7
45-
]
45+
]

src/examples/drag.elm

+4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ import Html.Events exposing (on)
44
import Json.Decode as Decode
55
import Mouse exposing (Position)
66

7+
{--
8+
To use this in elm-reactor you need to have invoked:
79
10+
elm-package intstall elm-lang/mouse
11+
--}
812

913
main =
1014
Html.program

src/examples/http.elm

+4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ import Html.Events exposing (..)
77
import Http
88
import Json.Decode as Decode
99

10+
{--
11+
To use this in elm-reactor you need to have invoked:
1012
13+
elm-package install elm-lang/http
14+
--}
1115

1216
main =
1317
Html.program

src/examples/markdown.elm

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import Markdown
22

3+
{--
4+
To use this in elm-reactor you need to have invoked:
5+
6+
elm-package install evancz/elm-markdown
7+
--}
38

49
main =
510
Markdown.toHtml [] markdown
@@ -23,4 +28,4 @@ to easily generate blocks of `Element` or `Html`.
2328
2429
[elm-markdown]: http://package.elm-lang.org/packages/evancz/elm-markdown/latest
2530
26-
"""
31+
"""

src/examples/websockets.elm

+6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ import Html.Attributes exposing (..)
66
import Html.Events exposing (..)
77
import WebSocket
88

9+
{--
910
11+
To use this in elm-reactor you need to have invoked:
12+
13+
elm-package install elm-lang/websocket
14+
15+
--}
1016

1117
main =
1218
Html.program

0 commit comments

Comments
 (0)