##// END OF EJS Templates
Fix all the bugs!
Fix all the bugs!

File last commit:

r17201:03d0484a
r17203:0a58a07f
Show More
loginmain.js
10 lines | 338 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 || {};
Jonathan Frederic
Return dicts instead of classes,...
r17201 require(['base/js/page'], function(page) {
ipython.page = new page.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 });