ember-inject-script

0.0.3 • Public • Published

ember-inject-script

Inject 3rd party scripts into your ember-cli app, for example mixpanel, Typekit etc...

Installation

Install as an Ember CLI addon:

npm install --save-dev ember-inject-script

Usage

For example, lets configure Typekit.

loadScript returns a promise, so we can simply load in the Typekit JS and, when it's ready, call Typekit.load():

/* global Typekit */
 
import injectScript from 'ember-inject-script';
import config from 'your-app/config/environment';
 
export default {
  name: 'typekit',
  initialize: function() {
    var url = "//use.typekit.net/"+config.typekitID+".js";
    injectScript(url).then(function() {
      Typekit.load();
    });
  }
};

Developing

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

Dependents (8)

Package Sidebar

Install

npm i ember-inject-script

Weekly Downloads

3,245

Version

0.0.3

License

MIT

Last publish

Collaborators

  • rlivsey