From 8e37633c49acbc286b309ab84024539f3ff4ab42 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 24 May 2013 09:17:26 -0700 Subject: [PATCH] Whitespace nits --- src/openseadragon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index 57828044..83f417fa 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -1664,10 +1664,10 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ if ( requestAnimationFrame && cancelAnimationFrame ) { // We can't assign these window methods directly to $ because they // expect their "this" to be "window", so we call them in wrappers. - $.requestAnimationFrame = function(){ + $.requestAnimationFrame = function(){ return requestAnimationFrame.apply( w, arguments ); }; - $.cancelAnimationFrame = function(){ + $.cancelAnimationFrame = function(){ return cancelAnimationFrame.apply( w, arguments ); }; } else {