├── .gitignore ├── LICENSE ├── README.md ├── elm.json └── src ├── AnimationFrame.elm └── Elm └── Kernel └── AnimationFrame.js /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-lang/animation-frame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-lang/animation-frame/HEAD/README.md -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-lang/animation-frame/HEAD/elm.json -------------------------------------------------------------------------------- /src/AnimationFrame.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-lang/animation-frame/HEAD/src/AnimationFrame.elm -------------------------------------------------------------------------------- /src/Elm/Kernel/AnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-lang/animation-frame/HEAD/src/Elm/Kernel/AnimationFrame.js --------------------------------------------------------------------------------