Don't insert parts when log is not inDOM

This commit is contained in:
Piotr Sarnacki 2015-08-18 15:53:42 +02:00
parent 86cd0f8a13
commit eec378116f

View File

@ -108,6 +108,8 @@ LogContentComponent = Ember.Component.extend
partsDidChange: (parts, start, _, added) ->
console.log 'log view: parts did change' if Log.DEBUG
return unless @get('state') == 'inDOM'
for part, i in parts.slice(start, start + added)
# console.log "limit in log view: #{@get('limited')}"
break if @engine?.limit?.limited