Rename isReadme to isReadmePath

This commit is contained in:
Kevin Sawicki
2013-02-12 11:47:13 -08:00
parent 0b2e2dad71
commit 1f4aedeb10
4 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ class PreviewList extends ScrollView
operationsByPath = _.groupBy(operations, (operation) -> operation.getPath())
for path, ops of operationsByPath
classes = ['path']
classes.push('readme') if fs.isReadme(path)
classes.push('readme') if fs.isReadmePath(path)
@li class: classes.join(' '), =>
@span path
@span "(#{ops.length})", class: 'path-match-number'