Skip to content

Commit 419dde8

Browse files
committed
v8.4.0
1 parent d9484e8 commit 419dde8

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ export namespace Gleap {
8383
showBackButton?: boolean
8484
): void;
8585
function openHelpCenter(showBackButton?: boolean): void;
86-
function openHelpCollection(collectionId: string, showBackButton?: boolean): void;
87-
function openHelpArticle(articleId: string, showBackButton?: boolean): void;
86+
function openHelpCenterCollection(collectionId: string, showBackButton?: boolean): void;
87+
function openHelpCenterArticle(articleId: string, showBackButton?: boolean): void;
8888
function searchHelpCenter(term: string, showBackButton?: boolean): void;
8989
function openFeatureRequests(showBackButton?: boolean): void;
9090
function close(): void;

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

published/8.4.0/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/Gleap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ class Gleap {
622622
/**
623623
* Opens a help center collection
624624
*/
625-
static openHelpCollection(collectionId, showBackButton = true) {
625+
static openHelpCenterCollection(collectionId, showBackButton = true) {
626626
if (!collectionId) {
627627
return;
628628
}
@@ -646,7 +646,7 @@ class Gleap {
646646
/**
647647
* Opens a help article
648648
*/
649-
static openHelpArticle(articleId, showBackButton = true) {
649+
static openHelpCenterArticle(articleId, showBackButton = true) {
650650
if (!articleId) {
651651
return;
652652
}

0 commit comments

Comments
 (0)