Skip to content

Commit 306abe2

Browse files
committed
v12.8.1
1 parent e21b973 commit 306abe2

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

build/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.

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export namespace Gleap {
100100
function openNews(showBackButton?: boolean): void;
101101
function openNewsArticle(id: string, showBackButton?: boolean): void;
102102
function openConversations(showBackButton?: boolean): void;
103+
function startProductTour(tourId: string): void;
103104
function openConversation(
104105
shareToken?: string,
105106
showBackButton?: boolean

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": "12.8.0",
3+
"version": "12.8.1",
44
"main": "build/index.js",
55
"scripts": {
66
"start": "webpack serve",

published/12.8.1/index.js

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

published/latest/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.

src/GleapShortcutListener.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default class GleapShortcutListener {
3434
const char = charForEvent(e);
3535
if (
3636
e.ctrlKey &&
37-
(char === "i" || char === "I" || char === 73)
37+
(char === "u" || char === "U" || char === 85)
3838
) {
3939
Gleap.startFeedbackFlowWithOptions("bugreporting", {
4040
autostartDrawing: true

0 commit comments

Comments
 (0)