Removed the parens around new Date call, for consistency

This commit is contained in:
Ian Gilman 2013-06-19 10:03:44 -07:00
parent 2e48239056
commit 4022206261

View File

@ -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.