diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2016-07-21 17:33:24 -0400 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2016-07-21 17:33:24 -0400 |
commit | d2cb058ac9c63a07d0153701ad79bece21ba94ad (patch) | |
tree | 9e650208f7ce1935d77aca34e3486e13a08da8e8 /app/assets/javascripts/commit.js | |
parent | 95c4825a456a4d1df8dba1def8735203368356c9 (diff) | |
download | gitlab-ce-to_vanilla.tar.gz |
Initial commit of coffee to jsto_vanilla
Diffstat (limited to 'app/assets/javascripts/commit.js')
-rw-r--r-- | app/assets/javascripts/commit.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/javascripts/commit.js b/app/assets/javascripts/commit.js new file mode 100644 index 00000000000..72bd000c89f --- /dev/null +++ b/app/assets/javascripts/commit.js @@ -0,0 +1,14 @@ +// Generated by CoffeeScript 1.10.0 +(function() { + this.Commit = (function() { + function Commit() { + $('.files .diff-file').each(function() { + return new CommitFile(this); + }); + } + + return Commit; + + })(); + +}).call(this); |