##// END OF EJS Templates
move language name, version into language_info...
move language name, version into language_info in kernel_info_reply adds adaptation of language info to msgspec adapter

File last commit:

r17444:058b9270
r19022:3684b661
Show More
page.js
41 lines | 1.3 KiB | application/javascript | JavascriptLexer
// Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
define([
'base/js/namespace',
'jquery',
], function(IPython, $){
"use strict";
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.
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.
// TODO: selector are hardcoded, pass as constructor argument
$('div#header').css('display','block');
};
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.
// TODO: selector are hardcoded, pass as constructor argument
$('div#site').css('display','block');
};
// Register self in the global namespace for convenience.
IPython.Page = Page;
return {'Page': Page};
});