mirror of
https://github.com/wassname/jupyter_contrib_nbextensions.git
synced 2026-08-13 12:20:43 +08:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
// Adds a button to hide the input part of the currently selected cells
|
|
|
|
define([
|
|
'jquery',
|
|
'base/js/namespace'
|
|
], function(
|
|
$,
|
|
IPython
|
|
) {
|
|
"use strict";
|
|
|
|
var toggle_selected_input = function () {
|
|
// Find the selected cell
|
|
var cell = IPython.notebook.get_selected_cell();
|
|
// Toggle visibility of the input div
|
|
cell.element.find("div.input").toggle('slow');
|
|
cell.metadata.hide_input = ! cell.metadata.hide_input;
|
|
};
|
|
|
|
var load_ipython_extension = function() {
|
|
|
|
// Add a button to the toolbar
|
|
IPython.toolbar.add_buttons_group([{
|
|
id: 'btn-hide-input',
|
|
label: 'Toggle selected cell input display',
|
|
icon: 'fa-chevron-up',
|
|
callback: function() {
|
|
toggle_selected_input();
|
|
setTimeout(function() { $('#btn-hide-input').blur(); }, 500);
|
|
}
|
|
}]);
|
|
|
|
// Collapse all cells that are marked as hidden
|
|
IPython.notebook.get_cells().forEach(function(cell) {
|
|
if (cell.metadata.hide_input) {
|
|
cell.element.find("div.input").hide();
|
|
}
|
|
});
|
|
};
|
|
|
|
return {
|
|
load_ipython_extension : load_ipython_extension
|
|
};
|
|
});
|