OpenLayers OpenLayers

Changeset 5485

Show
Ignore:
Timestamp:
12/18/07 05:49:29 (1 year ago)
Author:
fredj
Message:

Fix ND comments and indentation. No functional changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Rule/Comparison.js

    r5440 r5485  
    6565 
    6666    /**  
    67      * Constructor: OpenLayers.Rule.Logical 
    68      * Creates a logical rule (And, Or, Not)
     67     * Constructor: OpenLayers.Rule.Comparison 
     68     * Creates a comparison rule
    6969     * 
    7070     * Parameters: 
     
    7676     *  
    7777     * Returns: 
    78      * {<OpenLayers.Rule>} 
     78     * {<OpenLayers.Rule.Comparison>} 
    7979     */ 
    8080    initialize: function(options) { 
    81         OpenLayers.Rule.prototype.initialize.apply( 
    82                 this, [options]); 
     81        OpenLayers.Rule.prototype.initialize.apply(this, [options]); 
    8382    }, 
    8483 
  • trunk/openlayers/lib/OpenLayers/Rule/FeatureId.js

    r5484 r5485  
    3333     *  
    3434     * Returns: 
    35      * {<OpenLayers.Rule>} 
    36      *  
    37      * Inherits from: 
    38      *  - <OpenLayers.Rule> 
     35     * {<OpenLayers.Rule.FeatureId>} 
    3936     */ 
    4037    initialize: function(options) { 
    4138        this.fids = []; 
    42         OpenLayers.Rule.prototype.initialize.apply( 
    43                 this, [options]); 
     39        OpenLayers.Rule.prototype.initialize.apply(this, [options]); 
    4440    }, 
    4541 
  • trunk/openlayers/lib/OpenLayers/Rule/Logical.js

    r5440 r5485  
    4040     *  
    4141     * Returns: 
    42      * {<OpenLayers.Rule>} 
     42     * {<OpenLayers.Rule.Logical>} 
    4343     */ 
    4444    initialize: function(options) { 
    4545        this.children = []; 
    46         OpenLayers.Rule.prototype.initialize.apply( 
    47                 this, [options]); 
     46        OpenLayers.Rule.prototype.initialize.apply(this, [options]); 
    4847    }, 
    4948