Getting Started

Once Rabet is installed and running, every new tab you open has a window.rabetobject available in the developer console. This is how your website will interact with Rabet.

Browser Detection

To verify if the browser is running Rabet, run the following code in your developer console:

if (window.rabet) {
  console.log('Rabet is installed!');
}

You can review the full API here API refrence

Connecting to Rabet

You should only initiate a connection request in response to direct user action, such as clicking a button. You should always disable the "connect" button while the connection request is pending. You should never initiate a connection request on page load.

Last updated