OpenLayers OpenLayers

Changeset 5471

Show
Ignore:
Timestamp:
12/17/07 09:45:34 (1 year ago)
Author:
fredj
Message:

coding standards: line too long, fix ND comment typo

Files:

Legend:

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

    r5430 r5471  
    359359     */  
    360360    drawLineString: function(node, geometry) { 
    361         node.setAttributeNS(null, "points", this.getComponentsString(geometry.components));   
     361        node.setAttributeNS(null, "points",  
     362                            this.getComponentsString(geometry.components));   
    362363    }, 
    363364     
     
    371372     */  
    372373    drawLinearRing: function(node, geometry) { 
    373         node.setAttributeNS(null, "points", this.getComponentsString(geometry.components)); 
     374        node.setAttributeNS(null, "points",  
     375                            this.getComponentsString(geometry.components)); 
    374376    }, 
    375377     
     
    472474     *  
    473475     * Parameters: 
    474      * components - {Array(<OpenLayers.Geometry.Point)} Array of points 
     476     * components - {Array(<OpenLayers.Geometry.Point>)} Array of points 
    475477     */ 
    476478    getComponentsString: function(components) {