New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graphics.show + Signal not working in Firefox #427

Closed
sporto opened this Issue Oct 20, 2015 · 1 comment

Comments

Projects
None yet
2 participants
@sporto

sporto commented Oct 20, 2015

This seems like a bug to me in Elm core.

http://share-elm.com/sprout/5626bc20e4b0966c193ddb6f

import Graphics.Element exposing (..)
import Keyboard
import Char

characters : Signal Char
characters =
  Signal.map Char.fromCode Keyboard.presses

main : Signal Element
main =
  Signal.map show characters

This works fine in Chrome, but in Firefox it only shows the initial value. Tested in Firefox 41.

@jvoigtlaender

This comment has been minimized.

Show comment
Hide comment
@jvoigtlaender

jvoigtlaender Oct 21, 2015

Contributor

I'm closing this as a duplicate of https://github.com/elm-lang/core/issues/326.

Please always look through existing issues first before opening a new one.

In this case, just using GitHub's issue search feature on the core repo with search phrase "Keyboard.presses" would have directly led you to the pre-existing issue.

Contributor

jvoigtlaender commented Oct 21, 2015

I'm closing this as a duplicate of https://github.com/elm-lang/core/issues/326.

Please always look through existing issues first before opening a new one.

In this case, just using GitHub's issue search feature on the core repo with search phrase "Keyboard.presses" would have directly led you to the pre-existing issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment