##// END OF EJS Templates
Progress...
Progress...

File last commit:

r17193:5d75eee1
r17196:e709712d
Show More
loginmain.js
10 lines | 333 B | application/javascript | JavascriptLexer
Jonathan Frederic
Start of work to make notebook.html requirejs friendly.
r17192 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
Brian E. Granger
Simplifying logic on login page.
r5109
Jonathan Frederic
Use ipython namepsace for instances.
r17193 var ipython = ipython || {};
require(['base/js/page'], function(Page) {
ipython.page = new Page();
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 $('button#login_submit').addClass("btn btn-default");
Jonathan Frederic
Use ipython namepsace for instances.
r17193 ipython.page.show();
Brian Granger
Refactoring templates and top level js/css organization.
r6192 $('input#password_input').focus();
Brian E. Granger
Simplifying logic on login page.
r5109 });