How to use hellosign-embedded - 2 common examples

To help you get started, we’ve selected a few hellosign-embedded examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hellosign / hellosign-embedded / demo / src / index.js View on Github external
function openRequest(signUrl) {
  HelloSign.init(clientIdElement.value);

  const options = {
    url: signUrl,
    allowCancel: true,
    debug: true,
    skipDomainVerification: true,
    messageListener(evt) {
      console.log(evt);
    }
  };

  // Set the redirect URL, if defined by the user.
  if (redirectUrlElement.value.length) {
    options.redirectUrl = redirectUrlElement.value;
  }
github hellosign / hellosign-embedded / demo / src / index.js View on Github external
const options = {
    url: signUrl,
    allowCancel: true,
    debug: true,
    skipDomainVerification: true,
    messageListener(evt) {
      console.log(evt);
    }
  };

  // Set the redirect URL, if defined by the user.
  if (redirectUrlElement.value.length) {
    options.redirectUrl = redirectUrlElement.value;
  }

  HelloSign.open(options);
}

hellosign-embedded

Embed HelloSign signature requests and templates from within your web application.

MIT
Latest version published 4 months ago

Package Health Score

75 / 100
Full package analysis

Popular hellosign-embedded functions