Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Readme with instructions for elm reactor #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,17 @@ elm make src/Main.elm --output=elm.js
```

Then open `index.html` in your browser!

### If you are using elm reactor to run your project, then consider these revisions:

(a) Add flags with the value null:
`var app = Elm.Main.init({ node: document.getElementById("elm"), flags: null});`

The object that is passed to flags is going to be the input argument for the init function. Since the init function expects a Maybe Model, you can pass in a JSON object representing an entire model:
`{ entries: [{description:"Hello!", completed:true, editing:false, id:13}], visibility: "All", field: "", uid: 0}`

(b) Add styles:

Add a html link reference in the header to the included style.css file:
`<link rel="stylesheet" type="text/css" href="style.css">`