13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
(function() {
|
|
this.Commit = (function() {
|
|
function Commit() {
|
|
$('.files .diff-file').each(function() {
|
|
return new CommitFile(this);
|
|
});
|
|
}
|
|
|
|
return Commit;
|
|
|
|
})();
|
|
|
|
}).call(this);
|