//----------------------------------------------------------------------------1// Copyright (C) 2008-2011 The IPython Development Team2//3// Distributed under the terms of the BSD License. The full license is in4// the file COPYING, distributed as part of this software.5//----------------------------------------------------------------------------67//============================================================================8// On document ready9//============================================================================101112$(document).ready(function () {1314IPython.page = new IPython.Page();15$('button#login_submit').addClass("btn");16IPython.page.show();17$('input#password_input').focus();1819});20212223