Skip to content

Commit a759fd4

Browse files
Benjamin ZaporzanBenjamin Zaporzan
authored andcommitted
minor fixes
1 parent db1e5e1 commit a759fd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DOM.Barf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var DOM = DOM || {};
4949
DOM.Barf = DOM.Barf || {};
5050

5151
(function(context) {
52-
context.VERSION = "0.1.0";
52+
context.VERSION = "0.2.1";
5353

5454
/*
5555
This is the raw input method to barf / spit out a string
@@ -242,7 +242,7 @@ DOM.Barf = DOM.Barf || {};
242242
for (key in b) {
243243
if (b.hasOwnProperty(key)) {
244244
if (typeof a[key] == "object" && typeof b[key] == "object") {
245-
a[key] = merge(a[key], b[key]);
245+
a[key] = context.Merge(a[key], b[key]);
246246
}
247247
else {
248248
a[key] = b[key];

0 commit comments

Comments
 (0)