elm-graphics icon indicating copy to clipboard operation
elm-graphics copied to clipboard

The graphical building blocks that inspired Elm in the first place

Results 15 elm-graphics issues
Sort by recently updated
recently updated
newest added

Fixes https://github.com/evancz/elm-graphics/issues/3 `Native.Element.htmlHeight` was removed in 0182c58 , but it's still used by Text.width

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...

`realHtmlHeight` adds nodes to document.body. Checking `typeof document !== 'undefined'` isn't enough; for scripts in the head document can be defined but `document.body` still be `null` Fixes https://github.com/evancz/elm-graphics/issues/8 (which I...

I have written a small game using elm-graphics and animated gifs for sprites, it works great on Chrome; however on Safari the animated gifs only show the first frame if...

I can't sure it's right direction. Related to [Element.elm#L146](https://github.com/evancz/elm-graphics/blob/master/src/Element.elm#L146).

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...

If you have a cropped image sitting in front of at image in an array that will be passed to collage, the image sitting after the un-cropped image will become...

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 ) (...

The following program: ``` elm import Element exposing (..) import Text exposing (fromString) main = fromString "hello" |> centered |> width 200 |> toHtml ``` Gives the following error `Uncaught...