Changeset 6405
- Timestamp:
- 02/28/08 18:15:20 (11 months ago)
- Files:
-
- sandbox/euzuro/pop/lib/OpenLayers/Popup.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/euzuro/pop/lib/OpenLayers/Popup.js
r6404 r6405 267 267 if (OpenLayers.Util.getBrowserName() == 'firefox') { 268 268 this.map.events.register("movestart", this, function() { 269 var currentOverflow = this.contentDiv.style.overflow; 269 var style = document.defaultView.getComputedStyle( 270 this.contentDiv, null 271 ); 272 var currentOverflow = style.getPropertyValue("overflow"); 270 273 if (currentOverflow != "hidden") { 271 274 this.contentDiv._oldOverflow = currentOverflow;
