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

svg.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afcd3a7c73533fc06955257c369a617fb865623c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module BlobViewer
  class SVG < Base
    include Rich
    include ServerSide

    self.partial_name = 'svg'
    self.extensions = %w[svg]
    self.binary = false
    self.switcher_icon = 'doc-image'
    self.switcher_title = 'image'
  end
end