Skip to content

Commit 496cd3b

Browse files
committed
Merge branch 'development' of https://github.com/LoicMahieu/angular-schema-form into LoicMahieu-development
2 parents 6f08668 + 30cba29 commit 496cd3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sfPath.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
angular.module('schemaForm').provider('sfPath',
22
[function() {
3-
var sfPath = {parse: ObjectPath.parse};
3+
var sfPath = {parse: objectpath.parse};
44

55
// if we're on Angular 1.2.x, we need to continue using dot notation
66
if (angular.version.major === 1 && angular.version.minor < 3) {
77
sfPath.stringify = function(arr) {
88
return Array.isArray(arr) ? arr.join('.') : arr.toString();
99
};
1010
} else {
11-
sfPath.stringify = ObjectPath.stringify;
11+
sfPath.stringify = objectpath.stringify;
1212
}
1313

1414
// We want this to use whichever stringify method is defined above,

0 commit comments

Comments
 (0)