Skip to content

Commit

Permalink
Merge pull request #1 from kjhangiani/release/v0.1.1
Browse files Browse the repository at this point in the history
update addon to support ember 2.1 initializer changes
  • Loading branch information
kjhangiani authored Aug 4, 2017
2 parents 2083c19 + 816aba4 commit 66bcc75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/initializers/highcharts.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export function initialize(container) {
container.optionsForType('highcharts-config', { instantiate: false });
export function initialize(application) {
application.registerOptionsForType('highcharts-config', { instantiate: false });
}

export default {
name: 'highcharts',
initialize: initialize
name: 'highcharts',
initialize: initialize
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-cli-highcharts",
"version": "0.1.0",
"version": "0.1.1",
"description": "The default blueprint for ember-cli addons.",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 66bcc75

Please sign in to comment.