2017-04-13 13:21:07 -04:00
|
|
|
module BlobViewer
|
|
|
|
class Notebook < Base
|
|
|
|
include Rich
|
|
|
|
include ClientSide
|
|
|
|
|
|
|
|
self.partial_name = 'notebook'
|
|
|
|
self.extensions = %w(ipynb)
|
2017-04-24 13:51:56 -04:00
|
|
|
self.binary = false
|
2017-04-13 13:21:07 -04:00
|
|
|
self.switcher_icon = 'file-text-o'
|
|
|
|
self.switcher_title = 'notebook'
|
|
|
|
end
|
|
|
|
end
|