File: logoutmain.js

package info (click to toggle)
jupyter-notebook 4.2.3-4~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,804 kB
  • sloc: python: 8,698; makefile: 240; sh: 74
file content (12 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.

define(['base/js/namespace', 'base/js/page'], function(IPython, page) {
    function logout_main() {
        var page_instance = new page.Page();
        page_instance.show();

        IPython.page = page_instance;
    }
    return logout_main;
});