ember-addons / bootstrap-for-ember

Bootstrap for Ember.js
http://ember-addons.github.io/bootstrap-for-ember
Apache License 2.0
704 stars 103 forks source link

BsWizardComponent panes-property declaration #130

Open onechiporenko opened 10 years ago

onechiporenko commented 10 years ago

Hello. Firstly, thanks for your work! I found out that property panes in BsWizardComponent is defined two times. L53:

panes: (->
  @._childViews[1]
).property('content')

L62:

panes: Bootstrap.BsWizardStepsPanes.extend(
  contentBinding: 'parentView.content'
)

Should it be twice? Or first declaration may be removed?