Changeset 6670
- Timestamp:
- 03/28/08 18:14:13 (10 months ago)
- Files:
-
- sandbox/euzuro/pop/img/cloud-popup-relative.png (modified) (previous)
- sandbox/euzuro/pop/lib/OpenLayers/Popup/Framed.js (modified) (2 diffs)
- sandbox/euzuro/pop/lib/OpenLayers/Popup/FramedCloud.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/euzuro/pop/lib/OpenLayers/Popup/Framed.js
r6658 r6670 29 29 imageSize: null, 30 30 31 /** 32 * APIProperty: isAlphaImage 33 * {Boolean} The image has some alpha and thus needs to use the alpha 34 * image hack. Note that setting this to true will have no noticeable 35 * effect in FF or IE7 browsers, but will all but crush the ie6 36 * browser. 37 * Default is false. 38 */ 39 isAlphaImage: false, 40 31 41 /** 32 42 * Property: positionBlocks … … 276 286 277 287 var imgId = this.id + '_FrameDecorationImg_' + i; 278 fBlock.image = OpenLayers.Util.createAlphaImageDiv(imgId, 288 var imageCreator = 289 (this.isAlphaImage) ? OpenLayers.Util.createAlphaImageDiv 290 : OpenLayers.Util.createImage; 291 292 fBlock.image = imageCreator(imgId, 279 293 null, this.imageSize, this.imageSrc, 280 294 "absolute", null, null, null sandbox/euzuro/pop/lib/OpenLayers/Popup/FramedCloud.js
r6657 r6670 46 46 */ 47 47 fixedRelativePosition: false, 48 49 /** 50 * APIProperty: isAlphaImage 51 * {Boolean} The FramedCloud does not use an alpha image (in honor of the 52 * good ie6 folk out there) 53 */ 54 isAlphaImage: false, 48 55 49 56 /**
