mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 22:56:11 +03:00
Removed the parens around new Date call, for consistency
This commit is contained in:
parent
2e48239056
commit
4022206261
@ -1686,7 +1686,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
|||||||
if ( !iIntervalId ) {
|
if ( !iIntervalId ) {
|
||||||
iIntervalId = setInterval( function() {
|
iIntervalId = setInterval( function() {
|
||||||
if ( aAnimQueue.length ) {
|
if ( aAnimQueue.length ) {
|
||||||
var time = (new Date()).getTime();
|
var time = new Date().getTime();
|
||||||
// Process all of the currently outstanding frame
|
// Process all of the currently outstanding frame
|
||||||
// requests, but none that get added during the
|
// requests, but none that get added during the
|
||||||
// processing.
|
// processing.
|
||||||
|
Loading…
Reference in New Issue
Block a user