Skip to content

Commit 705dc4c

Browse files
committed
Update version to 14.8.6 and enhance language detection to support html lang tag in GleapTranslationManager
1 parent a6c77ba commit 705dc4c

File tree

15 files changed

+30
-16
lines changed

15 files changed

+30
-16
lines changed

build/browser/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/browser/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/cjs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/cjs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/esm/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build/esm/index.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="en">
2+
<html lang="de-ch">
33
<head>
44
<script src="/htmlimports.js"></script>
55
<title>Gleap Demo</title>

demo/main.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Gleap.open();
1616
// Gleap.setTicketAttribute("description", "Custom value")
1717
// Gleap.startBot("68833cbbf197435e2e3fb781");
1818

19-
2019
// const lastMonthDate = new Date();
2120
// lastMonthDate.setMonth(lastMonthDate.getMonth() - 1);
2221

@@ -38,8 +37,10 @@ Gleap.open();
3837
// Gleap.startBot("6789110e41e9869af7a2b6b8")
3938

4039
setTimeout(() => {
41-
const sidebarPlaceholders = document.querySelectorAll('.sidebar-placeholder > :nth-child(5)');
42-
sidebarPlaceholders.forEach(element => {
43-
element.style.marginLeft = '200px';
40+
const sidebarPlaceholders = document.querySelectorAll(
41+
".sidebar-placeholder > :nth-child(5)"
42+
);
43+
sidebarPlaceholders.forEach((element) => {
44+
element.style.marginLeft = "200px";
4445
});
4546
}, 3000);

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "14.8.5",
3+
"version": "14.8.6",
44
"main": "build/cjs/index.js",
55
"module": "build/esm/index.mjs",
66
"exports": {

0 commit comments

Comments
 (0)