Skip to content

Commit

Permalink
Bug fix: lose return value of block bang590#54
Browse files Browse the repository at this point in the history
  • Loading branch information
bang590 committed Jul 4, 2015
1 parent b4eddc0 commit ce07719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JSPatch/JSPatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var global = this
if (obj instanceof Function) {
return function() {
var args = Array.prototype.slice.call(arguments)
obj.apply(obj, _OC_formatJSToOC(args))
return obj.apply(obj, _OC_formatJSToOC(args))
}
}
if (obj instanceof Object) {
Expand Down

0 comments on commit ce07719

Please sign in to comment.