summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/download.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blob_viewer/download.rb')
-rw-r--r--app/models/blob_viewer/download.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/models/blob_viewer/download.rb b/app/models/blob_viewer/download.rb
index adc06587f69..074e7204814 100644
--- a/app/models/blob_viewer/download.rb
+++ b/app/models/blob_viewer/download.rb
@@ -1,17 +1,9 @@
module BlobViewer
class Download < Base
include Simple
- # We treat the Download viewer as if it renders the content client-side,
- # so that it doesn't attempt to load the entire blob contents and is
- # rendered synchronously instead of loaded asynchronously.
- include ClientSide
+ include Static
self.partial_name = 'download'
self.binary = true
-
- # We can always render the Download viewer, even if the blob is in LFS or too large.
- def render_error
- nil
- end
end
end