Janis Voigtländer

Results 28 issues of Janis Voigtländer

Compiling this program: ``` elm import Html exposing (div) import Html.App exposing (beginnerProgram) import Element exposing (show, toHtml) main = beginnerProgram { model = show "Test" , view = \model...

The field has currently no effect at all, it is ignored in the complete code base (neither `outlined`, nor `traced`, nor `outlinedText` respect it). So it would be better to...

This issue was first opened (by @srikumarks) as an issue against `core`: https://github.com/elm-lang/core/issues/221, then addressed in a pull request: https://github.com/elm-lang/core/pull/222. I have simply copied over to here, the change in...

With `"elm-lang/core": "4.0.5"` and `"evancz/elm-graphics": "1.0.0"`, the following program results in a runtime error: ``` elm import Color import Collage import Element grad = Color.linear ( 0, 60 ) (...

It is clear that the former `Html.toElement : Int -> Int -> Html -> Element` cannot exist anymore, since the `Html` type comes with the possibility of attached event handlers...

The issue fixed here is as follows, testable at http://elm-lang.org/try. The following program: ``` elm import Html exposing (button, text) import Html.App exposing (program) import Html.Events exposing (onClick) import Task...

performance

If I remove a once needed package from `elm-package.json`, then call `elm-package install` to install another package, I get the following: ``` > elm-package install evancz/elm-effects To install evancz/elm-effects I...

Having this: ``` json "dependencies": { "elm-lang/core": "2.1.0

problem

According to the [documentation](http://hackage.haskell.org/package/fgl-5.7.0.1/docs/Data-Graph-Inductive-Basic.html#v:undir) of `undir`, we get: "Make the graph undirected, i.e. for every edge from A to B, there exists an edge from B to A." My expectation...

For example, using Elm 0.16, it is possible to use `elm-make` on a project that has an `elm-package.json` stating `"elm-version": "0.15.0

bug