2.5.4 • Published 2 years ago

@snapcall/widget-sdk v2.5.4

Weekly downloads
-
License
custom
Repository
-
Last release
2 years ago

Snapcall

doc: https://doc.snapcall.io/#widget-api contact: support@snapcall.io

Getting Started with NPM and a bundler.

npm install @snapcall/widget-sdk

load the snapcall widget:

import { snapcallAPI } from '@snapcall/widget-sdk';

const bid = ""; // create an account on https://admin.snapcall.io/login to get a button identifier
snapcallAPI.initWidget(bid);

Getting started with npm and browser import/export.

npm install @snapcall/widget-sdk

load the snapcall widget:

<script type="module" src="node_modules/snapcall/index.js"></script>
const bid = ""; // create an account on https://admin.snapcall.io/login to get a button identifier
// snapcall script loaded before
if (snapcallAPI && snapcallAPI.initWidget) {
  snapcallAPI.initWidget(bid);
}
else {
  // snapcall script loaded after
  window.addEventListener('snapcallEvent_init', () => {
      snapcallAPI.initWidget(bid);
  })
}
2.5.0

3 years ago

2.5.2

3 years ago

2.5.1

3 years ago

2.5.4

2 years ago

2.5.3

2 years ago

2.3.0

3 years ago

2.2.2

3 years ago

2.2.0

3 years ago