Skip to content

Commit

Permalink
v6.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed May 3, 2022
1 parent 821a354 commit 0a4f6f2
Show file tree
Hide file tree
Showing 7 changed files with 7,524 additions and 18 deletions.
12 changes: 6 additions & 6 deletions build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,14 +570,14 @@ var deepClone = function deepClone(host) {
parent.appendChild(clone);

if (node.shadowRoot) {
walkTree(node.shadowRoot.firstChild, clone, shadowNodeId);
handleAdoptedStyleSheets(node.shadowRoot, clone, shadowNodeId);
var rootShadowNodeId = shadowNodeId;
shadowNodeId++;
walkTree(node.shadowRoot.firstChild, clone, rootShadowNodeId);
handleAdoptedStyleSheets(node.shadowRoot, clone, rootShadowNodeId);

if (typeof clone.setAttribute !== "undefined") {
clone.setAttribute("bb-shadow-parent", shadowNodeId);
clone.setAttribute("bb-shadow-parent", rootShadowNodeId);
}

++shadowNodeId;
}

walkTree(node.firstChild, clone);
Expand Down Expand Up @@ -6527,7 +6527,7 @@ var Gleap_Gleap = /*#__PURE__*/function () {
currentUrl: window.location.href,
language: navigator.language || navigator.userLanguage,
mobile: isMobile(),
sdkVersion: "6.9.0",
sdkVersion: "6.9.1",
sdkType: "javascript"
};
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gleap",
"version": "6.9.0",
"version": "6.9.1",
"main": "build/index.js",
"scripts": {
"start": "webpack serve",
Expand Down
1 change: 1 addition & 0 deletions published/6.9.1/appwidget.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0a4f6f2

Please sign in to comment.