Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
Jupyter Notebook POuL
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Roberto Bochet
Jupyter Notebook POuL
Commits
f23e5e14
Verified
Commit
f23e5e14
authored
May 18, 2020
by
Roberto Bochet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added cell reveal
parent
6a51995b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
custom/custom.css
custom/custom.css
+8
-0
custom/custom.js
custom/custom.js
+5
-0
No files found.
custom/custom.css
View file @
f23e5e14
...
...
@@ -79,4 +79,12 @@ a {
div
.out_prompt_overlay
:hover
{
background
:
initial
;
}
.cell
{
visibility
:
hidden
;
}
.cell.shown
,
.cell
:first-of-type
{
visibility
:
initial
;
}
\ No newline at end of file
custom/custom.js
View file @
f23e5e14
...
...
@@ -13,4 +13,9 @@ autoscroll = () => {
$
([
IPython
.
events
]).
on
(
"
select.Cell
"
,
autoscroll
);
$
([
IPython
.
events
]).
on
(
"
output_appended.OutputArea
"
,
function
()
{
setTimeout
(
autoscroll
,
10
);
});
/*** Auto reveal ***/
$
([
IPython
.
events
]).
on
(
"
select.Cell
"
,
()
=>
{
document
.
querySelector
(
"
.cell.selected
"
).
classList
.
add
(
"
shown
"
);
});
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment