Don't destroy parts on cleanup

Destroying parts on cleanup can have weird effects, because we observe parts in
log view.
This commit is contained in:
Piotr Sarnacki 2014-12-30 11:58:56 +01:00
parent eb9eac2b09
commit fbcfa04859
2 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,7 @@ require 'travis/log_chunks'
clearParts: ->
parts = @get('parts')
@notifyPropertyChange('parts')
parts.destroy()
parts.set('content', [])
fetch: ->
console.log 'log model: fetching log' if Log.DEBUG

View File

@ -68,6 +68,7 @@ Travis.reopen
parts = log.get('parts')
parts.removeArrayObserver(@, didChange: 'partsDidChange', willChange: 'noop')
parts.destroy()
log.notifyPropertyChange('parts')
@lineSelector?.willDestroy()
createEngine: ->