BigW Consortium Gitlab

svg.rb 243 Bytes
Newer Older
Douwe Maan committed
1 2 3 4 5 6 7
module BlobViewer
  class SVG < Base
    include Rich
    include ServerSide

    self.partial_name = 'svg'
    self.extensions = %w(svg)
8
    self.binary = false
Douwe Maan committed
9 10 11 12
    self.switcher_icon = 'picture-o'
    self.switcher_title = 'image'
  end
end