regniraj / dat-gui

Automatically exported from code.google.com/p/dat-gui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

requestAnimationFrame

GoogleCodeExporter opened this issue · comments

What steps will reproduce the problem?
1.  just run dat.gui within Chrome (tested with v36.0.1985.143)
2.  get a message reading:
"'webkitRequestAnimationFrame' is vendor-specific. Please use the standard 
'requestAnimationFrame' instead. "

What is the expected output? What do you see instead?
Everything works but eventually it may stop working.

What version of the product are you using? On what operating system?
Chrome v36.0.1985.143, OSX 10.9.3

Please provide any additional information below.
Just update requestAnimationFrame.js and use the standar function first if 
available:

  return window.requestAnimationFrame ||
      window.webkitRequestAnimationFrame ||
      window.mozRequestAnimationFrame ||
      window.oRequestAnimationFrame ||
      window.msRequestAnimationFrame ||
      function(callback, element) {

        window.setTimeout(callback, 1000 / 60);

      };

Original issue reported on code.google.com by a.murci...@gmail.com on 20 Aug 2014 at 12:01