7 lines
111 B
CoffeeScript
7 lines
111 B
CoffeeScript
|
class Commit
|
||
|
constructor: ->
|
||
|
$('.files .diff-file').each ->
|
||
|
new CommitFile(this)
|
||
|
|
||
|
@Commit = Commit
|