Skip to content

Commit

Permalink
0.1.1 Release
Browse files Browse the repository at this point in the history
Config collision with other idx components resolution.
  • Loading branch information
asaf committed Feb 24, 2015
1 parent 6d0d6f0 commit 910d885
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions app/initializers/idx-accordion-config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import Em from 'ember';
import Config from 'ember-idx-utils/config'
import IdxConfig from 'ember-idx-utils/config'

export default {
name: 'ember-idx-tabs',
name: 'ember-idx-accordion',
initialize: function() {
if (!Em.Config) {
Em.Config = Config = Config.create()
}
var Config = Em.IdxConfig = Em.IdxConfig ? Em.IdxConfig : IdxConfig.create();

var defaultConfig = Config.getConfig('default');
if (!defaultConfig) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-idx-accordion",
"version": "0.1.0",
"version": "0.1.1",
"directories": {
"doc": "doc",
"test": "tests"
Expand Down Expand Up @@ -43,6 +43,6 @@
"configPath": "tests/dummy/config"
},
"dependencies": {
"ember-idx-utils": "^0.2.1"
"ember-idx-utils": "^0.2.2"
}
}

0 comments on commit 910d885

Please sign in to comment.