đŠ Callbacks
Use the following callbacks to get notified on certain state changes of the Gleap widget. This enables you to create an even deeper integration with Gleap.
On openâ
This allows you to get notified once Gleap opens.
Gleap.on("open", () => {
console.log("Gleap did open.");
});
On closeâ
This allows you to get notified once Gleap closes.
Gleap.on("close", () => {
console.log("Gleap did close.");
});
On feedback sentâ
This allows you to get notified once feedback is sent.
Gleap.on("feedback-sent", (formData) => {
console.log("Gleap did send a feedback item.");
console.log(formData);
});
On flow startedâ
This allows you to get notified once a Gleap flow is started.
Gleap.on("flow-started", (flow) => {
console.log("The user selected a flow");
console.log(flow);
});
On error while sending feedbackâ
This allows you to get notified if an error occurs while Gleap is trying to send a feedback item.
Gleap.on("error-while-sending", () => {
console.log("Ouch, something went wrong.");
});