Skip to content
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">`