parent
fb32b6561f
commit
9bfe5fc06c
@ -1,9 +1,10 @@
|
||||
// Copyright (c) IPython Development Team.
|
||||
// Distributed under the terms of the Modified BSD License.
|
||||
|
||||
require(['base/js/namespace', 'base/js/page'], function(IPython, Page) {
|
||||
IPython.page = new Page();
|
||||
var ipython = ipython || {};
|
||||
require(['base/js/page'], function(Page) {
|
||||
ipython.page = new Page();
|
||||
$('button#login_submit').addClass("btn btn-default");
|
||||
IPython.page.show();
|
||||
ipython.page.show();
|
||||
$('input#password_input').focus();
|
||||
});
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
// Copyright (c) IPython Development Team.
|
||||
// Distributed under the terms of the Modified BSD License.
|
||||
var ipython = ipython || {};
|
||||
|
||||
require(['base/js/namespace', 'base/js/page'], function(IPython, Page) {
|
||||
IPython.page = new Page();
|
||||
require(['base/js/page'], function(Page) {
|
||||
ipython.page = new Page();
|
||||
$('#ipython-main-app').addClass('border-box-sizing');
|
||||
IPython.page.show();
|
||||
ipython.page.show();
|
||||
});
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
// Copyright (c) IPython Development Team.
|
||||
// Distributed under the terms of the Modified BSD License.
|
||||
|
||||
require(['base/js/namespace', 'base/js/page'], function(IPython, Page) {
|
||||
IPython.page = new Page();
|
||||
IPython.page.show();
|
||||
var ipython = ipython || {};
|
||||
require(['base/js/page'], function(Page) {
|
||||
ipython.page = new Page();
|
||||
ipython.page.show();
|
||||
});
|
||||
|
||||
Loading…
Reference in new issue