|
@@ -217,6 +217,7 @@ function activate(app: JupyterLab, mainMenu: IMainMenu, palette: ICommandPalette
|
|
commands.addCommand(CommandIDs.about, {
|
|
commands.addCommand(CommandIDs.about, {
|
|
label: `About ${info.name}`,
|
|
label: `About ${info.name}`,
|
|
execute: () => {
|
|
execute: () => {
|
|
|
|
+ let jupyterURL = 'https://jupyter.org/about.html';
|
|
let headerLogo = h.div({className: 'jp-About-header-logo'});
|
|
let headerLogo = h.div({className: 'jp-About-header-logo'});
|
|
let headerWordmark = h.div({className: 'jp-About-header-wordmark'});
|
|
let headerWordmark = h.div({className: 'jp-About-header-wordmark'});
|
|
let release = 'alpha release';
|
|
let release = 'alpha release';
|
|
@@ -235,8 +236,8 @@ function activate(app: JupyterLab, mainMenu: IMainMenu, palette: ICommandPalette
|
|
|
|
|
|
|
|
|
|
let externalLinks = h.span({className: 'jp-About-externalLinks'},
|
|
let externalLinks = h.span({className: 'jp-About-externalLinks'},
|
|
- h.span({className: 'jp-Button-flat'}, "CORE CONTRIBUTORS"),
|
|
|
|
- h.span({className: 'jp-Button-flat'}, "ABOUT PROJECT JUPYTER")
|
|
|
|
|
|
+ h.a({href: '#', className: 'jp-Button-flat'}, "CORE CONTRIBUTORS"),
|
|
|
|
+ h.a({href: jupyterURL, target: '_blank', className: 'jp-Button-flat'}, "ABOUT PROJECT JUPYTER")
|
|
);
|
|
);
|
|
let copyright = h.span({className: 'jp-About-copyright'}, "© 2017 Project Jupyter");
|
|
let copyright = h.span({className: 'jp-About-copyright'}, "© 2017 Project Jupyter");
|
|
|
|
|