From 4022206261fd0ec5890443edac47940463ee3c37 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Wed, 19 Jun 2013 10:03:44 -0700 Subject: [PATCH] Removed the parens around new Date call, for consistency --- src/openseadragon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index 69434754..9aa30d76 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -1686,7 +1686,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ if ( !iIntervalId ) { iIntervalId = setInterval( function() { if ( aAnimQueue.length ) { - var time = (new Date()).getTime(); + var time = new Date().getTime(); // Process all of the currently outstanding frame // requests, but none that get added during the // processing.