##// END OF EJS Templates
Add notion of action that differs from shortcuts....
Add notion of action that differs from shortcuts. This decouple the notion of shortcut from the notion of executed "action" This allow the shortcuts manager to be purely describe as data, and the same action to be later refered to either from the shortcut, from a toolbar button or a menu. This also implement a more complete keyboard shortcut handler which is able ton interpete sequences like `Cmd-X,Meta-v` By storing the shortcuts in a tree.

File last commit:

r17444:058b9270
r18390:39ea1bc4
Show More
page.js
41 lines | 1.3 KiB | application/javascript | JavascriptLexer
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
define([
'base/js/namespace',
Jonathan Frederic
MWE,...
r17200 'jquery',
Jonathan Frederic
Make page.html require.js friendly.
r17188 ], function(IPython, $){
Matthias BUSSONNIER
"use strict" in most (if not all) our javascript...
r12103 "use strict";
Brian Granger
Refactoring templates and top level js/css organization.
r6192
var Page = function () {
this.bind_events();
};
Page.prototype.bind_events = function () {
};
Page.prototype.show = function () {
// The header and site divs start out hidden to prevent FLOUC.
// Main scripts should call this method after styling everything.
Brian Granger
Major refactoring of notebook....
r6193 this.show_header();
this.show_site();
};
Page.prototype.show_header = function () {
// The header and site divs start out hidden to prevent FLOUC.
// Main scripts should call this method after styling everything.
Matthias BUSSONNIER
movestyling from js to css + deprecation warnign
r17428 // TODO: selector are hardcoded, pass as constructor argument
Brian Granger
Refactoring templates and top level js/css organization.
r6192 $('div#header').css('display','block');
Brian Granger
Major refactoring of notebook....
r6193 };
Page.prototype.show_site = function () {
// The header and site divs start out hidden to prevent FLOUC.
// Main scripts should call this method after styling everything.
Matthias BUSSONNIER
movestyling from js to css + deprecation warnign
r17428 // TODO: selector are hardcoded, pass as constructor argument
Brian Granger
Refactoring templates and top level js/css organization.
r6192 $('div#site').css('display','block');
};
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Register self in the global namespace for convenience.
Brian Granger
Refactoring templates and top level js/css organization.
r6192 IPython.Page = Page;
Jonathan Frederic
Return dicts instead of classes,...
r17201 return {'Page': Page};
Jonathan Frederic
Make page.html require.js friendly.
r17188 });