Skip to content
Permalink
Browse files
Per rwaldron's request, added oRequestAnimationFrame as a possibility
  • Loading branch information
timmywil committed Apr 5, 2011
1 parent fe3203b commit 9db18dd
Showing 1 changed file with 3 additions and 1 deletion.
@@ -12,7 +12,9 @@ var elemdisplay = {},
// opacity animations
[ "opacity" ]
],
requestAnimationFrame = window.webkitRequestAnimationFrame || window.mozRequestionAnimationFrame;
requestAnimationFrame = window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame;

jQuery.fn.extend({
show: function( speed, easing, callback ) {

0 comments on commit 9db18dd

Please sign in to comment.