blob: b7e5cd71e6bef290705ca0e1be8da1c589d9dba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module BlobViewer
class SVG < Base
include Rich
include ServerSide
self.partial_name = 'svg'
self.extensions = %w(svg)
self.binary = false
self.switcher_icon = 'picture-o'
self.switcher_title = 'image'
end
end
|