Skip to content

Instantly share code, notes, and snippets.

View corydorning's full-sized avatar

Cory Dorning corydorning

View GitHub Profile
@mrdoob
mrdoob / RequestAnimationFrame.js
Created February 22, 2011 14:50
Provides requestAnimationFrame in a cross browser way.
/**
* Provides requestAnimationFrame in a cross browser way.
* @author paulirish / http://paulirish.com/
*/
if ( !window.requestAnimationFrame ) {
window.requestAnimationFrame = ( function() {
return window.webkitRequestAnimationFrame ||
anonymous
anonymous / enable_ie6_bg_image_caching.js
Created October 15, 2010 17:51
yay!!
try {
$.browser.msie && $.browser.version < 7
&& document.execCommand( 'BackgroundImageCache', false, true );
} catch(e) { };