mike-north/ember-calendly

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable operator-linebreak */
/* eslint-env node */
'use strict';

module.exports = {
  name: 'ember-calendly',

  contentFor(type) {
    let content = '';

    if (type === 'head') {
      content =
        '<script async type="text/javascript" src="https://calendly.com/assets/external/widget.js"></script>' +
        '<link href="https://calendly.com/assets/external/widget.css" rel="stylesheet">';
    }

    return content;
  }
};