Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/examples/case.elm
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ primitiveNumbers =
, primitiveCount 5
, primitiveCount 6
, primitiveCount 7
]
]
4 changes: 4 additions & 0 deletions src/examples/drag.elm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import Html.Events exposing (on)
import Json.Decode as Decode
import Mouse exposing (Position)

{--
To use this in elm-reactor you need to have invoked:

elm-package intstall elm-lang/mouse
--}

main =
Html.program
Expand Down
4 changes: 4 additions & 0 deletions src/examples/http.elm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ import Html.Events exposing (..)
import Http
import Json.Decode as Decode

{--
To use this in elm-reactor you need to have invoked:

elm-package install elm-lang/http
--}

main =
Html.program
Expand Down
7 changes: 6 additions & 1 deletion src/examples/markdown.elm
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import Markdown

{--
To use this in elm-reactor you need to have invoked:

elm-package install evancz/elm-markdown
--}

main =
Markdown.toHtml [] markdown
Expand All @@ -23,4 +28,4 @@ to easily generate blocks of `Element` or `Html`.

[elm-markdown]: http://package.elm-lang.org/packages/evancz/elm-markdown/latest

"""
"""
6 changes: 6 additions & 0 deletions src/examples/websockets.elm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ import Html.Attributes exposing (..)
import Html.Events exposing (..)
import WebSocket

{--

To use this in elm-reactor you need to have invoked:

elm-package install elm-lang/websocket

--}

main =
Html.program
Expand Down