mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge pull request #4642 from betatim/js-redirect
Use JavaScript to redirect users
This commit is contained in:
commit
a403d59cb0
@ -6,6 +6,11 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="refresh" content="1;url={{ open_url }}" />
|
||||
<title>Opening Jupyter Notebook</title>
|
||||
<script>
|
||||
setTimeout(function() {
|
||||
window.location.href = "{{ open_url }}";
|
||||
}, 1000);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user