Re: [elm-discuss] Dot notation for default value fails on compilation

2016-07-30 Thread Austin B
Oh nice, okay. thank you. On Saturday, July 30, 2016 at 2:43:36 PM UTC-7, Janis Voigtländer wrote: > > Known issue: https://github.com/elm-lang/elm-compiler/issues/635. > > Am Samstag, 30. Juli 2016 schrieb Austin Baltes : > >> Hi, I'm working on building a scatterPlot module for one of my Elm

Re: [elm-discuss] Dot notation for default value fails on compilation

2016-07-30 Thread Janis Voigtländer
Known issue: https://github.com/elm-lang/elm-compiler/issues/635. Am Samstag, 30. Juli 2016 schrieb Austin Baltes : > Hi, I'm working on building a scatterPlot module for one of my Elm > projects. > > This works (assigning Sp.defaultProps into defaultProps) > import ScatterPlot as Sp >

[elm-discuss] Dot notation for default value fails on compilation

2016-07-30 Thread Austin Baltes
Hi, I'm working on building a scatterPlot module for one of my Elm projects. This works (assigning Sp.defaultProps into defaultProps) import ScatterPlot as Sp defaultProps = Sp.defaultProps init : (Model, Cmd Msg) init = ( Model { defaultProps | series = [ { x = 0, y =