summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/commit/file.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/commit/file.js')
-rw-r--r--app/assets/javascripts/commit/file.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/assets/javascripts/commit/file.js b/app/assets/javascripts/commit/file.js
deleted file mode 100644
index ee087c978dd..00000000000
--- a/app/assets/javascripts/commit/file.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-new */
-/* global ImageFile */
-
-(function() {
- this.CommitFile = (function() {
- function CommitFile(file) {
- if ($('.image', file).length) {
- new gl.ImageFile(file);
- }
- }
-
- return CommitFile;
- })();
-}).call(window);