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