add missing semicolon

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9980 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2010-01-28 11:37:58 +00:00
parent 5edcc97240
commit 7a78237bdd
+3 -3
View File
@@ -180,7 +180,7 @@ OpenLayers.Format.Atom = OpenLayers.Class(OpenLayers.Format.XML, {
var attrib = feature.attributes; var attrib = feature.attributes;
var atomAttrib = attrib.atom || {}; var atomAttrib = attrib.atom || {};
var atomns = this.namespaces.atom; var atomns = this.namespaces.atom;
var georssns = this.namespaces.georss var georssns = this.namespaces.georss;
var entryNode = this.createElementNSPlus("atom:entry"); var entryNode = this.createElementNSPlus("atom:entry");
// atom:author // atom:author
@@ -453,11 +453,11 @@ OpenLayers.Format.Atom = OpenLayers.Class(OpenLayers.Format.XML, {
nodes = this.getElementsByTagNameNS(node, atomns, "content"); nodes = this.getElementsByTagNameNS(node, atomns, "content");
if (nodes.length > 0) { if (nodes.length > 0) {
value = {}; value = {};
attval = nodes[0].getAttribute("type") attval = nodes[0].getAttribute("type");
if (attval) { if (attval) {
value.type = attval; value.type = attval;
} }
attval = nodes[0].getAttribute("src") attval = nodes[0].getAttribute("src");
if (attval) { if (attval) {
value.src = attval; value.src = attval;
} else { } else {