File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ gulp.task('minify', function() {
16
16
dependencies : function ( ) {
17
17
return [
18
18
{ name : 'angular' } ,
19
- { name : 'ObjectPath ' } ,
19
+ { name : 'objectpath ' } ,
20
20
{ name : 'tv4' } ,
21
21
]
22
22
} ,
Original file line number Diff line number Diff line change 1
1
angular . module ( 'schemaForm' ) . provider ( 'sfPath' ,
2
2
[ function ( ) {
3
- var sfPath = { parse : ObjectPath . parse } ;
3
+ var sfPath = { parse : objectpath . parse } ;
4
4
5
5
// if we're on Angular 1.2.x, we need to continue using dot notation
6
6
if ( angular . version . major === 1 && angular . version . minor < 3 ) {
7
7
sfPath . stringify = function ( arr ) {
8
8
return Array . isArray ( arr ) ? arr . join ( '.' ) : arr . toString ( ) ;
9
9
} ;
10
10
} else {
11
- sfPath . stringify = ObjectPath . stringify ;
11
+ sfPath . stringify = objectpath . stringify ;
12
12
}
13
13
14
14
// We want this to use whichever stringify method is defined above,
You can’t perform that action at this time.
0 commit comments