Fixed Typo on AddRequest.getAttribute
This commit is contained in:
parent
4097a777e9
commit
6c00badd95
|
@ -135,7 +135,7 @@ AddRequest.prototype.getAttribute = function (name) {
|
||||||
|
|
||||||
for (var i = 0; i < this.attributes.length; i++) {
|
for (var i = 0; i < this.attributes.length; i++) {
|
||||||
if (this.attributes[i].type === name)
|
if (this.attributes[i].type === name)
|
||||||
return this.attribute[i];
|
return this.attributes[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue