2017-04-13 13:21:07 -04:00
|
|
|
module BlobViewer
|
|
|
|
class PDF < Base
|
|
|
|
include Rich
|
|
|
|
include ClientSide
|
2017-04-24 13:51:56 -04:00
|
|
|
|
2017-04-13 13:21:07 -04:00
|
|
|
self.partial_name = 'pdf'
|
|
|
|
self.extensions = %w(pdf)
|
2017-04-24 13:51:56 -04:00
|
|
|
self.binary = true
|
2017-04-13 13:21:07 -04:00
|
|
|
self.switcher_icon = 'file-pdf-o'
|
|
|
|
self.switcher_title = 'PDF'
|
|
|
|
end
|
|
|
|
end
|