remove limit for now and update log.js

This commit is contained in:
Sven Fuchs 2013-03-09 00:51:20 +01:00
parent ffe6f2d62c
commit 93edf5b63c
2 changed files with 3 additions and 2 deletions

View File

@ -42,7 +42,7 @@ Travis.reopen
console.log 'log view: create engine' if Log.DEBUG
@limit = new Log.Limit
@scroll = new Log.Scroll
@engine = Log.create(listeners: [@limit, new Log.FragmentRenderer, new Log.Folds, @scroll])
@engine = Log.create(listeners: [new Log.FragmentRenderer, new Log.Folds, @scroll])
@observeParts()
@numberLineOnHover()
@ -55,6 +55,7 @@ Travis.reopen
partsDidChange: (parts, start, _, added) ->
console.log 'log view: parts did change' if Log.DEBUG
for part, i in parts.slice(start, start + added)
# console.log "limit in log view: #{@get('limited')}"
break if @get('limited')
@engine.set(part.number, part.content)
@propertyDidChange('limited')

File diff suppressed because one or more lines are too long