[OpenLayers-Commits] r12258 - trunk/openlayers/lib/OpenLayers/Tile

commits-20090109 at openlayers.org commits-20090109 at openlayers.org
Thu Aug 18 05:41:15 EDT 2011


Author: ahocevar
Date: 2011-08-18 02:41:14 -0700 (Thu, 18 Aug 2011)
New Revision: 12258

Modified:
   trunk/openlayers/lib/OpenLayers/Tile/BackBufferable.js
Log:
fixing a typo (see #3419)

Modified: trunk/openlayers/lib/OpenLayers/Tile/BackBufferable.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Tile/BackBufferable.js	2011-08-18 06:30:39 UTC (rev 12257)
+++ trunk/openlayers/lib/OpenLayers/Tile/BackBufferable.js	2011-08-18 09:41:14 UTC (rev 12258)
@@ -131,7 +131,7 @@
             // (3) we don't have a tile available that we could use as buffer
             noTile = !(tile && tile.childNodes.length > 0),
             // (4) no backbuffer is displayed for a tile that's still loading
-            noBackBuffer = data.tile && !this.isLoading;            
+            noBackBuffer = !data.tile && this.isLoading;            
         if (notNeeded || noParent || noTile || noBackBuffer) {
             this.setBackBufferData();
             return;



More information about the Commits mailing list