Changeset 476
- Timestamp:
- 05/31/06 19:28:38 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js
r442 r476 55 55 this.setRicoCorners(true); 56 56 57 //set the popup color and opacity 58 this.setBackgroundColor();59 this.setOpacity();57 //set the popup color and opacity 58 this.setBackgroundColor(); 59 this.setOpacity(); 60 60 61 61 return this.div; … … 89 89 90 90 if (this.div != null) { 91 if (this.contentDiv != null) {92 this.div.style.background = "transparent";91 if (this.contentDiv != null) { 92 this.div.style.background = "transparent"; 93 93 Rico.Corner.changeColor(this.contentDiv, this.backgroundColor); 94 94 } 95 }95 } 96 96 }, 97 97 … … 107 107 if (this.contentDiv != null) { 108 108 Rico.Corner.changeOpacity(this.contentDiv, this.opacity); 109 }109 } 110 110 } 111 111 },
