Skip to content
Snippets Groups Projects
Commit e4cca4d7 authored by Douwe Maan's avatar Douwe Maan
Browse files

Display video blobs in-line like images

parent 31b87b8c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -61,11 +61,13 @@
.file-content {
background: $white-light;
 
&.image_file {
&.image_file,
&.video {
background: $file-image-bg;
text-align: center;
 
img {
img,
video {
padding: 20px;
max-width: 80%;
}
Loading
Loading
Loading
Loading
@@ -27,6 +27,8 @@ class Blob < SimpleDelegator
BlobViewer::Image,
BlobViewer::Sketch,
 
BlobViewer::Video,
BlobViewer::PDF,
 
BlobViewer::BinarySTL,
Loading
Loading
module BlobViewer
class Video < Base
include Rich
include ClientSide
self.partial_name = 'video'
self.extensions = UploaderHelper::VIDEO_EXT
self.binary = true
self.switcher_icon = 'film'
self.switcher_title = 'video'
end
end
.file-content.video
%video{ src: blob_raw_url, controls: true, data: { setup: '{}' } }
---
title: Display video blobs in-line like images
merge_request:
author:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment