From 101b6c44aa38ff1076ea3cd713a1ffebb18f95f7 Mon Sep 17 00:00:00 2001 From: Alex Gryzlov Date: Wed, 31 Aug 2016 18:45:18 +0300 Subject: [PATCH] update for PS 0.9 --- bower.json | 4 ++-- src/DOM/RequestAnimationFrame.purs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 54c72c7..d467fd6 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "purescript-requestanimationframe", - "version": "1.0.0", + "version": "1.1.0", "homepage": "https://github.com/CapillarySoftware/purescript-requestAnimationFrame", "authors": [ "Isaac Shapira " @@ -22,6 +22,6 @@ "package.json" ], "dependencies": { - "purescript-dom": "~0.2.0" + "purescript-dom": "^2.0.0" } } diff --git a/src/DOM/RequestAnimationFrame.purs b/src/DOM/RequestAnimationFrame.purs index 0d5fd21..7f1eb22 100644 --- a/src/DOM/RequestAnimationFrame.purs +++ b/src/DOM/RequestAnimationFrame.purs @@ -6,7 +6,7 @@ module DOM.RequestAnimationFrame import Prelude -import Control.Monad.Eff +import Control.Monad.Eff (Eff) import DOM (DOM()) import DOM.HTML (window)