Skip to content

Commit

Permalink
Fix configuration.
Browse files Browse the repository at this point in the history
Closes #7
  • Loading branch information
Asaf Shakarzy committed Feb 24, 2015
1 parent 0e57e68 commit 6ac86ca
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/initializers/idx-tabs.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',
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

0 comments on commit 6ac86ca

Please sign in to comment.