We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f08668 + 30cba29 commit 496cd3bCopy full SHA for 496cd3b
src/sfPath.js
@@ -1,14 +1,14 @@
1
angular.module('schemaForm').provider('sfPath',
2
[function() {
3
- var sfPath = {parse: ObjectPath.parse};
+ var sfPath = {parse: objectpath.parse};
4
5
// if we're on Angular 1.2.x, we need to continue using dot notation
6
if (angular.version.major === 1 && angular.version.minor < 3) {
7
sfPath.stringify = function(arr) {
8
return Array.isArray(arr) ? arr.join('.') : arr.toString();
9
};
10
} else {
11
- sfPath.stringify = ObjectPath.stringify;
+ sfPath.stringify = objectpath.stringify;
12
}
13
14
// We want this to use whichever stringify method is defined above,
0 commit comments