Skip to content

Commit cc396d9

Browse files
committed
fixed usage of UTL
1 parent fbcd66a commit cc396d9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

dist/breinify-api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14137,10 +14137,10 @@ dependencyScope.jQuery = $;;
1413714137
}
1413814138

1413914139
// make sure the instance is initialized
14140-
Breinify.UTL.storage.init({});
14140+
BreinifyUtil.storage.init({});
1414114141

1414214142
// get the information from it
14143-
this.splitTestData = Breinify.UTL.storage.get('split-test-data');
14143+
this.splitTestData = BreinifyUtil.storage.get('split-test-data');
1414414144
if (this.splitTestData === null || !$.isPlainObject(this.splitTestData)) {
1414514145
this.splitTestData = {};
1414614146

dist/breinify-api.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BreinifyUtil.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -770,10 +770,10 @@
770770
}
771771

772772
// make sure the instance is initialized
773-
Breinify.UTL.storage.init({});
773+
BreinifyUtil.storage.init({});
774774

775775
// get the information from it
776-
this.splitTestData = Breinify.UTL.storage.get('split-test-data');
776+
this.splitTestData = BreinifyUtil.storage.get('split-test-data');
777777
if (this.splitTestData === null || !$.isPlainObject(this.splitTestData)) {
778778
this.splitTestData = {};
779779

0 commit comments

Comments
 (0)