summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/pdf.rb
blob: 65805f5f388fa2abd0300a3d027c7bc124741ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module BlobViewer
  class PDF < Base
    include Rich
    include ClientSide

    self.partial_name = 'pdf'
    self.extensions = %w(pdf)
    self.binary = true
    self.switcher_icon = 'file-pdf-o'
    self.switcher_title = 'PDF'
  end
end