13 lines
243 B
Ruby
13 lines
243 B
Ruby
|
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
|