Fix ND comments and indentation. No functional changes.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@5485 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -64,8 +64,8 @@ OpenLayers.Rule.Comparison = OpenLayers.Class(OpenLayers.Rule, {
|
|||||||
upperBoundary: null,
|
upperBoundary: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor: OpenLayers.Rule.Logical
|
* Constructor: OpenLayers.Rule.Comparison
|
||||||
* Creates a logical rule (And, Or, Not).
|
* Creates a comparison rule.
|
||||||
*
|
*
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* params - {Object} Hash of parameters for this rule:
|
* params - {Object} Hash of parameters for this rule:
|
||||||
@@ -75,11 +75,10 @@ OpenLayers.Rule.Comparison = OpenLayers.Class(OpenLayers.Rule, {
|
|||||||
* rule
|
* rule
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {<OpenLayers.Rule>}
|
* {<OpenLayers.Rule.Comparison>}
|
||||||
*/
|
*/
|
||||||
initialize: function(options) {
|
initialize: function(options) {
|
||||||
OpenLayers.Rule.prototype.initialize.apply(
|
OpenLayers.Rule.prototype.initialize.apply(this, [options]);
|
||||||
this, [options]);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -32,15 +32,11 @@ OpenLayers.Rule.FeatureId = OpenLayers.Class(OpenLayers.Rule, {
|
|||||||
* rule
|
* rule
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {<OpenLayers.Rule>}
|
* {<OpenLayers.Rule.FeatureId>}
|
||||||
*
|
|
||||||
* Inherits from:
|
|
||||||
* - <OpenLayers.Rule>
|
|
||||||
*/
|
*/
|
||||||
initialize: function(options) {
|
initialize: function(options) {
|
||||||
this.fids = [];
|
this.fids = [];
|
||||||
OpenLayers.Rule.prototype.initialize.apply(
|
OpenLayers.Rule.prototype.initialize.apply(this, [options]);
|
||||||
this, [options]);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -39,12 +39,11 @@ OpenLayers.Rule.Logical = OpenLayers.Class(OpenLayers.Rule, {
|
|||||||
* rule
|
* rule
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
* {<OpenLayers.Rule>}
|
* {<OpenLayers.Rule.Logical>}
|
||||||
*/
|
*/
|
||||||
initialize: function(options) {
|
initialize: function(options) {
|
||||||
this.children = [];
|
this.children = [];
|
||||||
OpenLayers.Rule.prototype.initialize.apply(
|
OpenLayers.Rule.prototype.initialize.apply(this, [options]);
|
||||||
this, [options]);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user