mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-11 12:30:51 +08:00
21 lines
658 B
JavaScript
21 lines
658 B
JavaScript
//----------------------------------------------------------------------------
|
|
// 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();
|
|
|
|
});
|
|
|