OpenLayers OpenLayers

Changeset 6026

Show
Ignore:
Timestamp:
02/07/08 15:14:44 (10 months ago)
Author:
sbenthall
Message:

DragFeature.mid no longer has z-index stuff

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/topp/olmerge/lib/OpenLayers/Control/DragFeature.mid.js

    r6024 r6026  
    147147     */ 
    148148    timeTolerance: 400, 
    149      
    150     /** 
    151      * Property: oldZIndex 
    152      * The old z-index of the node being dragged. When being dragged, the 
    153      * feature will be given the highest z-index so the user can see it; 
    154      * after the drag has completed, the feature will have its old 
    155      * z-index reverted. 
    156      */ 
    157     oldZIndex: null, 
    158149     
    159150    /** 
     
    287278                                               featureCenter.y - this.startPixel.y); 
    288279                                                
    289         this.oldZIndex = this.feature.style.graphicZIndex; 
    290280    }, 
    291281 
     
    342332     */ 
    343333    doneDragging: function(pixel) { 
    344          
    345         // Revert the z-index. 
    346         this.feature.style.graphicZIndex = this.oldZIndex;         
    347334         
    348335        // Check tolerance.