File size: 793 Bytes
fdaf774 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
// Launch QT Console attached to the current kernel
define([
'base/js/namespace',
'base/js/events'
], function(Jupyter, events) {
var load_ipython_extension = function () {
Jupyter.toolbar.add_buttons_group([
/**
* Button to launch QTConsole
*/
Jupyter.keyboard_manager.actions.register ({
'help' : 'Run QTConsole',
'icon' : 'fa-terminal',
'handler': function () {
Jupyter.notebook.kernel.execute('%qtconsole')
}
}, 'run-qtconsole', 'qtconsole')
]);
};
return {
load_ipython_extension : load_ipython_extension
};
});
|