Skip to content

Commit

Permalink
Minor parameter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erasaur committed Jan 24, 2015
1 parent cf9dd8a commit 3d2f4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfs-autoform-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Util = {
});
},
//returns the object that CONTAINS the last property
deepFind: function(obj, prop){
deepFind: function(obj, path){
path = path.split('.');
for (i = 0; i < path.length - 1; i++)
obj = obj[path[i]];
Expand Down

0 comments on commit 3d2f4c4

Please sign in to comment.