comparison plugins/disco.js @ 81:7500bc048dbc

Typo errors.
author Sonny Piers <sonny.piers@gmail.com>
date Tue, 07 Feb 2012 18:44:07 +0100
parents 50d36b093e3a
children bfa3c003fc1d
comparison
equal deleted inserted replaced
80:50d36b093e3a 81:7500bc048dbc
107 var name = child.getAttributeNS(null, 'name'); 107 var name = child.getAttributeNS(null, 'name');
108 if (name) 108 if (name)
109 identity.name = name; 109 identity.name = name;
110 identities.push(identity); 110 identities.push(identity);
111 } 111 }
112 else if (ns === Lightstring.ns['dataforms'] && name === 'x') { 112 else if (ns === Lightstring.ns['dataforms'] && name === 'x')
113 var fields = this.dataforms.parse(child); //TODO: check if that plugin is enabled. 113 var fields = this.dataforms.parse(child); //TODO: check if that plugin is enabled.
114 } 114
115 else 115 else
116 ; //TODO: emit a warning. 116 ; //TODO: emit a warning.
117 } 117 }
118 118
119 stanza.identities = identities; 119 stanza.identities = identities;