Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Zaporzan authored and Benjamin Zaporzan committed Mar 20, 2015
1 parent db1e5e1 commit a759fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DOM.Barf.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var DOM = DOM || {};
DOM.Barf = DOM.Barf || {};

(function(context) {
context.VERSION = "0.1.0";
context.VERSION = "0.2.1";

/*
This is the raw input method to barf / spit out a string
Expand Down Expand Up @@ -242,7 +242,7 @@ DOM.Barf = DOM.Barf || {};
for (key in b) {
if (b.hasOwnProperty(key)) {
if (typeof a[key] == "object" && typeof b[key] == "object") {
a[key] = merge(a[key], b[key]);
a[key] = context.Merge(a[key], b[key]);
}
else {
a[key] = b[key];
Expand Down

0 comments on commit a759fd4

Please sign in to comment.