gitlab-org--gitlab-foss/app/assets/javascripts/commit.js

13 lines
265 B
JavaScript
Raw Normal View History

/* eslint-disable func-names, space-before-function-paren, wrap-iife */
/* global CommitFile */
window.Commit = (function() {
function Commit() {
$('.files .diff-file').each(function() {
return new CommitFile(this);
});
}
2016-07-24 20:45:11 +00:00
return Commit;
})();