File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ var WalkMe = module.exports = integration('WalkMe')
19
19
. option ( 'trackWalkMeEvents' , false )
20
20
. option ( 'loadWalkMeInIframe' , false )
21
21
. option ( 'integrityHash' , '' )
22
- . option ( 'customDirectory ' , 'users' )
22
+ . option ( 'customDirecotry ' , 'users' )
23
23
. tag ( '<script async="true" src="{{ url }}" crossorigin="" integrity="{{ hash }}">' )
24
24
25
25
/**
@@ -68,7 +68,7 @@ WalkMe.prototype.initialize = function() {
68
68
sriSuffix = 'private_' ;
69
69
}
70
70
71
- var bucket = ( this . options . customDirectory ) ? this . options . customDirectory : 'users' ;
71
+ var bucket = ( this . options . customDirecotry ) ? this . options . customDirecotry : 'users' ;
72
72
var url = `https://cdn.walkme.com/${ bucket } /${ walkMeSystemId } /${ env } /walkme_${ sriSuffix } ${ walkMeSystemId } _https.js` ;
73
73
74
74
this . load ( {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ describe('WalkMe', function() {
17
17
trackWalkMeEvents : false ,
18
18
loadWalkMeInIframe : true ,
19
19
integrityHash : '' ,
20
- customDirectory : '' ,
20
+ customDirecotry : '' ,
21
21
} ;
22
22
23
23
beforeEach ( function ( ) {
@@ -47,7 +47,7 @@ describe('WalkMe', function() {
47
47
. option ( 'trackWalkMeEvents' , false )
48
48
. option ( 'loadWalkMeInIframe' , false )
49
49
. option ( 'integrityHash' , '' )
50
- . option ( 'customDirectory ' , 'users' )
50
+ . option ( 'customDirecotry ' , 'users' )
51
51
) ;
52
52
} ) ;
53
53
@@ -171,7 +171,7 @@ describe('WalkMe', function() {
171
171
172
172
walkme . options . walkMeSystemId = walkMeSystemId ;
173
173
walkme . options . integrityHash = integrityHash ;
174
- walkme . options . customDirectory = bucket ;
174
+ walkme . options . customDirecotry = bucket ;
175
175
176
176
analytics . load ( walkme , function ( ) {
177
177
analytics . loaded ( tag ) ;
You can’t perform that action at this time.
0 commit comments