Skip to content

Commit

Permalink
Merge pull request #2 from vin/leak
Browse files Browse the repository at this point in the history
Fix global variable leak
  • Loading branch information
Art Skvira committed May 22, 2013
2 parents 470d799 + 7d9aac5 commit 7558696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function _addProperty(property_name, conf) {
}

function _processProperties(collection) {
for(property in collection) {
for(var property in collection) {
if(collection.hasOwnProperty(property)) {
_addProperty(property, collection);
}
Expand Down

0 comments on commit 7558696

Please # to comment.