2017-08-17 22:00:37 +05:30
|
|
|
module BlobViewer
|
|
|
|
class Notebook < Base
|
|
|
|
include Rich
|
|
|
|
include ClientSide
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
self.partial_name = 'notebook'
|
|
|
|
self.extensions = %w(ipynb)
|
|
|
|
self.binary = false
|
|
|
|
self.switcher_icon = 'file-text-o'
|
|
|
|
self.switcher_title = 'notebook'
|
|
|
|
end
|
|
|
|
end
|