OpenLayers OpenLayers

Changeset 6679

Show
Ignore:
Timestamp:
03/28/08 21:31:08 (10 months ago)
Author:
euzuro
Message:

style

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/euzuro/pop/lib/OpenLayers/Popup/Framed.js

    r6678 r6679  
    285285            var r = positionBlock.anchor.right; 
    286286            var t = positionBlock.anchor.top; 
    287              
     287 
    288288            //note that we use the isNaN() test here because if the  
    289289            // size object is initialized with a "auto" parameter, the  
     
    292292            // 
    293293            var w = (isNaN(positionBlock.size.w)) ? this.size.w - (r + l)  
    294                                           : positionBlock.size.w; 
     294                                                  : positionBlock.size.w; 
    295295 
    296296            var h = (isNaN(positionBlock.size.h)) ? this.size.h - (b + t)  
    297                                           : positionBlock.size.h; 
     297                                                  : positionBlock.size.h; 
    298298                  
    299299            block.div.style.width = w + 'px'; 
     
    308308            block.image.style.top = positionBlock.position.y + 'px'; 
    309309        } 
    310          
     310 
    311311        this.contentDiv.style.left = this.padding.left + "px"; 
    312312        this.contentDiv.style.top = this.padding.top + "px";