Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-03 13:56:09 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-03 13:56:09 +0400
commit1eec1f4f20a13d8110757fb5027462346aa0a9fc (patch)
tree264a14549bd47344f925a6d082ea2ef47398586a /app
parenta7ab029d22baec1aa6e5a095b5eac99a9ffebdaa (diff)
parent76c4421b26f2545f355d2bba6f573d5b0c780962 (diff)
Merge branch 'master' of github.com:gitlabhq/gitlabhq
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/commit/file.js.coffee6
-rw-r--r--app/assets/javascripts/commit/image-file.js.coffee2
2 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/commit/file.js.coffee b/app/assets/javascripts/commit/file.js.coffee
index a45ee58d1b4..4db9116a9de 100644
--- a/app/assets/javascripts/commit/file.js.coffee
+++ b/app/assets/javascripts/commit/file.js.coffee
@@ -1,7 +1,7 @@
class CommitFile
-
+
constructor: (file) ->
if $('.image', file).length
new ImageFile(file)
-
-this.CommitFile = CommitFile \ No newline at end of file
+
+@CommitFile = CommitFile
diff --git a/app/assets/javascripts/commit/image-file.js.coffee b/app/assets/javascripts/commit/image-file.js.coffee
index f901a9e28ff..607b85eb45c 100644
--- a/app/assets/javascripts/commit/image-file.js.coffee
+++ b/app/assets/javascripts/commit/image-file.js.coffee
@@ -125,4 +125,4 @@ class ImageFile
img.on 'load', =>
callback.call(this, domImg.naturalWidth, domImg.naturalHeight)
-this.ImageFile = ImageFile \ No newline at end of file
+@ImageFile = ImageFile