Browse Source

RequestAnimationFrameCallback signature fix

The W3C specification defines this callback as:
callback FrameRequestCallback = void (DOMHighResTimeStamp time);

See:
http://www.w3.org/TR/animation-timing/#framerequestcallback
Philippe 11 years ago
parent
commit
058cd4196d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/js/html/RequestAnimationFrameCallback.hx

+ 1 - 1
std/js/html/RequestAnimationFrameCallback.hx

@@ -23,4 +23,4 @@
 // This file is generated, do not edit!
 package js.html;
 
-typedef RequestAnimationFrameCallback = Float -> Bool;
+typedef RequestAnimationFrameCallback = Float -> Void;