gitlab-org--gitlab-foss/app/models/blob_viewer/svg.rb

13 lines
246 B
Ruby
Raw Normal View History

2017-04-13 17:21:07 +00:00
module BlobViewer
class SVG < Base
include Rich
include ServerSide
self.partial_name = 'svg'
self.extensions = %w(svg)
self.text_based = true
self.switcher_icon = 'picture-o'
self.switcher_title = 'image'
end
end