diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2016-07-21 19:16:14 -0400 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2016-07-21 19:16:14 -0400 |
commit | 08a2bdc560b949f359008f8c2c8d32a294ac48f8 (patch) | |
tree | 2ce8048810eb1e062eae2b27b24fef828a2cac69 /app/assets/javascripts/commit.js | |
parent | 95c4825a456a4d1df8dba1def8735203368356c9 (diff) | |
download | gitlab-ce-vanilla_js_no4.tar.gz |
All files now JS instead of CSvanilla_js_no4
Diffstat (limited to 'app/assets/javascripts/commit.js')
-rw-r--r-- | app/assets/javascripts/commit.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/javascripts/commit.js b/app/assets/javascripts/commit.js new file mode 100644 index 00000000000..23cf5b519f4 --- /dev/null +++ b/app/assets/javascripts/commit.js @@ -0,0 +1,13 @@ +(function() { + this.Commit = (function() { + function Commit() { + $('.files .diff-file').each(function() { + return new CommitFile(this); + }); + } + + return Commit; + + })(); + +}).call(this); |