##// END OF EJS Templates
Merge pull request #884 from fperez/nb-usability...
Merge pull request #884 from fperez/nb-usability Various Notebook usability fixes: - add kernel restart dialog confirmation (it destroys the user session) - add missing keybindings - change language from 'terminal mode' to 'in-place execution' which is more descriptive - adjust spacing/padding and colors slightly for readability and better use of space in small screens. - add line numbering toggle to code cells. Triggered with C-m-l. - show keybindings in monospaced font. - add QuickHelp button that is always visible and at the top. - add missing keybindings for kernel interrupt/restart from the kbd.

File last commit:

r5067:d8d17522
r5075:4cc4dc87 merge
Show More
quickhelp.js
39 lines | 1.2 KiB | application/javascript | JavascriptLexer
//----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
//============================================================================
// QuickHelp button
//============================================================================
var IPython = (function (IPython) {
var QuickHelp = function (selector) {
this.selector = selector;
if (this.selector !== undefined) {
this.element = $(selector);
this.style();
this.bind_events();
}
};
QuickHelp.prototype.style = function () {
this.element.find('button#quick_help').button();
};
QuickHelp.prototype.bind_events = function () {
var that = this;
this.element.find("button#quick_help").click(function () {
IPython.notebook.toggle_keyboard_shortcuts();
});
};
// Set module variables
IPython.QuickHelp = QuickHelp;
return IPython;
}(IPython));