Fix two missing semicolons. Thanks to ksgeograf for the catch. No functional
change. (Pullup #2134) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9475 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -228,7 +228,7 @@ OpenLayers.Format.WMSGetFeatureInfo = OpenLayers.Class(OpenLayers.Format.XML, {
|
||||
var attributes = {};
|
||||
if (node.nodeType == 1) {
|
||||
var children = node.childNodes;
|
||||
n = children.length
|
||||
n = children.length;
|
||||
for (var i = 0; i < n; ++i) {
|
||||
var child = children[i];
|
||||
if (child.nodeType == 1) {
|
||||
|
||||
@@ -207,7 +207,7 @@ OpenLayers.Style = OpenLayers.Class({
|
||||
var defaults = this.defaultStyle;
|
||||
OpenLayers.Util.applyDefaults(symbolizer, {
|
||||
pointRadius: defaults.pointRadius
|
||||
})
|
||||
});
|
||||
if(symbolizer.stroke === true || symbolizer.graphic === true) {
|
||||
OpenLayers.Util.applyDefaults(symbolizer, {
|
||||
strokeWidth: defaults.strokeWidth,
|
||||
|
||||
Reference in New Issue
Block a user