UNPKG

ember-cli-easypiechart

Version:

An ember-cli addon for using jQuery.easy-pie-chart in Ember applications.

17 lines (12 loc) 323 B
/* jshint node: true */ 'use strict'; var fs = require('fs'); var path = require('path'); module.exports = { name: 'ember-cli-easypiechart', included: function(app) { this.app = app; this._super.included(app); app.import(app.bowerDirectory + '/jquery.easy-pie-chart/dist/jquery.easypiechart.js'); } };