You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
658 B
21 lines
658 B
//----------------------------------------------------------------------------
|
|
// Copyright (C) 2008-2011 The IPython Development Team
|
|
//
|
|
// Distributed under the terms of the BSD License. The full license is in
|
|
// the file COPYING, distributed as part of this software.
|
|
//----------------------------------------------------------------------------
|
|
|
|
//============================================================================
|
|
// On document ready
|
|
//============================================================================
|
|
|
|
|
|
$(document).ready(function () {
|
|
"use strict";
|
|
|
|
IPython.page = new IPython.Page();
|
|
IPython.page.show();
|
|
|
|
});
|
|
|