BigW Consortium Gitlab

notebook.rb 260 Bytes
Newer Older
Douwe Maan committed
1 2 3 4
module BlobViewer
  class Notebook < Base
    include Rich
    include ClientSide
5

Douwe Maan committed
6 7
    self.partial_name = 'notebook'
    self.extensions = %w(ipynb)
8
    self.binary = false
Douwe Maan committed
9 10 11 12
    self.switcher_icon = 'file-text-o'
    self.switcher_title = 'notebook'
  end
end