ncsa-scheduler-integration
v1.0.0-a.0
Published
Holds the Calendly Scheduler NPM Package Information
Downloads
1,068
Readme
ncsa-scheduler-integration
NCSA's Scheduler Integration
Installation
npm install ncsa-scheduler-integration
Require or import the package. Then initialize it with a function call. After initialization, it's ready to be used.
Examples:
require('ncsa-scheduler-integration')();
or
const ncsaScheduler = require('ncsa-scheduler-integration');
ncsaScheduler();
or
import('ncsa-scheduler-integration').then(module => module.default());
or
import ncsaScheduler from 'ncsa-scheduler-integration');
ncsaScheduler();
Usage
After the package is loaded and intialized you can call the functions defined on the NCSAScheduler
object.
NCSAScheduler.popup({
leadId: 12345,
athleteFirstName: "Jane",
athleteLastName: "Smith",
athleteEmail: "[email protected]",
})
Official Documentation
Explanations on usage and features can be found here: https://ncsaathleticrecruiting.github.io/docs/scheduler_integration/latest/directions/index.html
Development and Publishing
If you have access to this repo for development check out the INTERNAL_README.md