Skip to content

Ember CLI 0.2.1 and Ember 1.10

Choose a tag to compare

@aomran aomran released this 28 Mar 15:22
· 162 commits to master since this release

This version of the addon upgrades to the latest ember-cli and ember-js. There are also automated tests added and a lot of refactoring of the code.

The addon can now be extended:

// your-app/components/ember-chart.js
import EmberChart from 'ember-cli-chart/components/ember-chart';

export default EmberChart.extend({
  // do whatever you want here to change functionality
});