##// END OF EJS Templates
Merge pull request #937 from minrk/readline...
Merge pull request #937 from minrk/readline Add dirty trick for readline import on OSX to more aggressively detect the presence of libedit masquerading as true GNU readline. Also made the libedit warning extremely loud, so people don't miss it. See the original PR page for the gory details; short version: 1. remove lib-dynload from sys.path before trying to import readline the first time 2. after import, restore lib-dynload to its place in sys.path 3. if import failed without lib-dynload, try it one more time, to get the default module

File last commit:

r5097:accaced7
r5211:90b01394 merge
Show More
quickhelp.js
40 lines | 1.3 KiB | application/javascript | JavascriptLexer
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 //----------------------------------------------------------------------------
// 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.
//----------------------------------------------------------------------------
//============================================================================
MinRK
fix quickhelp widget...
r5066 // QuickHelp button
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 //============================================================================
var IPython = (function (IPython) {
MinRK
fix quickhelp widget...
r5066 var QuickHelp = function (selector) {
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 this.selector = selector;
if (this.selector !== undefined) {
this.element = $(selector);
Fernando Perez
Clean up accidentally introduced hard tabs in JS code.
r5025 this.style();
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 this.bind_events();
}
};
MinRK
fix quickhelp widget...
r5066 QuickHelp.prototype.style = function () {
this.element.find('button#quick_help').button();
MinRK
Add tooltips to the notebook via 'title' attr....
r5097 this.element.find('button#quick_help').attr('title', "Show/Hide the keyboard shortcuts for the IPython Notebook");
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 };
MinRK
fix quickhelp widget...
r5066 QuickHelp.prototype.bind_events = function () {
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 var that = this;
MinRK
fix quickhelp widget...
r5066 this.element.find("button#quick_help").click(function () {
MinRK
show_keyboard_shortcuts -> toggle_keyboard_shortcuts...
r5067 IPython.notebook.toggle_keyboard_shortcuts();
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023 });
};
// Set module variables
MinRK
fix quickhelp widget...
r5066 IPython.QuickHelp = QuickHelp;
Fernando Perez
Add quick help button: broken ATM, style and binding aren't working....
r5023
return IPython;
}(IPython));