Typeform/embed

View on GitHub
packages/demo-html/public/behavioral-js/load-js.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Open: load (via API)</title>
    <link rel="stylesheet" href="/lib/css/popup.css" />
  </head>
  <body>
    <h1>This popup opens on page load (via API)</h1>
    <p>If you see this you very likely already closed the popup.</p>
    <p>If the popup did not open automatically something is broken.</p>
    <p>
      Popover embed does not have a close button by default and needs to be explicitly provided when embedding via API.
      <a href="../popup-js.html">See popup API demo for details.</a>
    </p>

    <script src="../lib/embed-next.js"></script>
    <script>
      window.tf.createPopup("moe6aa", {
        medium: "unit-test",
        open: "load",
        width: 400,
        height: 550,
      });
    </script>
  </body>
</html>