notebook/IPython/html/static/base/js/pagemain.js
Matthias BUSSONNIER 13ff842be5 "use strict" in most (if not all) our javascript
+ fix one variable leaking in global nameespace
2013-08-09 14:56:52 +02:00

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();
});