Skip to content

Commit 6b15a29

Browse files
mgolgnarf
authored andcommitted
removed 'o' prefix; it hasn't been implemented and it'll never be
1 parent aec50d9 commit 6b15a29

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/jquery.requestAnimationFrame.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery requestAnimationFrame - v0.1.2pre - 2013-03-05
1+
/*! jQuery requestAnimationFrame - v0.1.2pre - 2013-04-15
22
* https://github.com/gnarf37/jquery-requestAnimationFrame
33
* Copyright (c) 2013 Corey Frang; Licensed MIT */
44

@@ -12,7 +12,7 @@
1212

1313
var animating,
1414
lastTime = 0,
15-
vendors = ['webkit', 'moz', 'o'],
15+
vendors = ['webkit', 'moz'],
1616
requestAnimationFrame = window.requestAnimationFrame,
1717
cancelAnimationFrame = window.cancelAnimationFrame;
1818

dist/jquery.requestAnimationFrame.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/jquery.requestAnimationFrame.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
var animating,
1919
lastTime = 0,
20-
vendors = ['webkit', 'moz', 'o'],
20+
vendors = ['webkit', 'moz'],
2121
requestAnimationFrame = window.requestAnimationFrame,
2222
cancelAnimationFrame = window.cancelAnimationFrame;
2323

0 commit comments

Comments
 (0)