File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 4747
4848 - name : Build the project
4949 run : npm run build
50+
51+ - name : Build examples
52+ run : npm run example
Original file line number Diff line number Diff line change 1010/.vscode /
1111/.spago /
1212/output-pulp /
13- .psc- *
13+ .psc- *
Original file line number Diff line number Diff line change @@ -128,12 +128,12 @@ moveItem fromIndex toIndex items =
128128
129129main :: Effect Unit
130130main = do
131- maybeRoot <- window
131+ maybeContainer <- window
132132 >>= document
133133 >>= toNonElementParentNode
134134 >>> getElementById " container"
135- case maybeRoot of
136- Nothing -> throw " Root element not found."
135+ case maybeContainer of
136+ Nothing -> throw " Container element not found."
137137 Just container -> do
138138 todoExample <- mkTodoExample
139139 render (todoExample unit) container
You can’t perform that action at this time.
0 commit comments