mirror of
https://github.com/wassname/jupyter_contrib_nbextensions.git
synced 2026-08-17 11:20:38 +08:00
Legacy Slidemode.
This folder contains the legacy slidemode
Put the following in your custom.js
// Slidemode
require(['nbextensions/IPython-notebook-extensions/slidemode/main','base/js/events'], function(slidemode, events){
events.on('app_initialized.NotebookApp', function(){
slidemode.init();
});
});
// end slidemode