mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
13ff842be5
+ fix one variable leaking in global nameespace
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();
|
|
|
|
});
|
|
|