OpenLayers OpenLayers

Changeset 1940

Show
Ignore:
Timestamp:
11/20/06 12:51:11 (2 years ago)
Author:
crschmidt
Message:

Patch from penyaskito: setSize function got updated in AnchoredBubble,
but never updated in Popup.js. Fix for #422 .

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Popup.js

    r1721 r1940  
    208208            this.div.style.height = this.size.h + "px"; 
    209209        } 
     210        if (this.contentDiv != null){ 
     211            this.contentDiv.style.width = this.size.w + "px"; 
     212            this.contentDiv.style.height = this.size.h + "px"; 
     213        } 
    210214    },   
    211215