Remove unused outlets

This commit is contained in:
Kevin Sawicki
2013-01-03 15:50:48 -08:00
parent 6c9dcb8d25
commit e4513f5d48

View File

@@ -35,12 +35,12 @@ class PreviewList extends ScrollView
operationsByPath = _.groupBy(operations, (operation) -> operation.getPath())
for path, ops of operationsByPath
@li =>
@span path, outlet: "path", class: "path"
@span path, class: 'path'
for operation in ops
{prefix, suffix, match, range} = operation.preview()
@li 'data-index': operation.index, class: 'operation', =>
@span range.start.row + 1, class: 'line-number'
@span outlet: "preview", class: "preview", =>
@span class: 'preview', =>
@span prefix
@span match, class: 'match'
@span suffix