summaryrefslogtreecommitdiff
path: root/app/models/blob_viewer/notebook.rb
blob: 8632b8a9885f5ab56dc4e0e10d451587b4a542d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module BlobViewer
  class Notebook < Base
    include Rich
    include ClientSide
    
    self.partial_name = 'notebook'
    self.extensions = %w(ipynb)
    self.binary = false
    self.switcher_icon = 'file-text-o'
    self.switcher_title = 'notebook'
  end
end