2017-01-10 18:02:20 -05:00
|
|
|
/* eslint-disable func-names, space-before-function-paren, wrap-iife */
|
2016-12-14 00:26:26 -05:00
|
|
|
/* global CommitFile */
|
|
|
|
|
2017-03-11 02:30:44 -05:00
|
|
|
window.Commit = (function() {
|
|
|
|
function Commit() {
|
|
|
|
$('.files .diff-file').each(function() {
|
|
|
|
return new CommitFile(this);
|
|
|
|
});
|
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-03-11 02:30:44 -05:00
|
|
|
return Commit;
|
|
|
|
})();
|