gitlab-org--gitlab-foss/app/models/blob_viewer/pdf.rb

13 lines
250 B
Ruby
Raw Normal View History

2017-04-13 17:21:07 +00:00
module BlobViewer
class PDF < Base
include Rich
include ClientSide
self.partial_name = 'pdf'
self.extensions = %w(pdf)
self.text_based = false
self.switcher_icon = 'file-pdf-o'
self.switcher_title = 'PDF'
end
end