-
-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New approach for JupyterLab 3 #605
Closed
Closed
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
0637903
First stand-alone app
fcollonval b9151e4
Lab like app
fcollonval bdb826e
Be sure Reveal layout takes over
fcollonval ecedeb9
Pass notebook path as part of URL
fcollonval a152583
Fix loading included files
fcollonval 94069ca
Add widgets test case
fcollonval 06177d7
Reduce mandatory plugin list
fcollonval d792bc5
Add JupyterLab extension
fcollonval 643638b
Fix webpack shared scope
fcollonval 4361160
Rename classic to nbextension
fcollonval cd75d28
Restructure the repo as one python pkg
fcollonval c5a4a45
Remove symlink
fcollonval ee6dea9
Keep License and Readme as symlink
fcollonval 62e1e6a
Improve binder environment
fcollonval d9b9cd8
Lint code
fcollonval 646b7e3
Fix python sdist bdist
fcollonval 77d9cde
Pin package to JLab 3.0
fcollonval 42a9d9a
Fix for binder
fcollonval 9bd084b
Add folder structure description
fcollonval 3413608
Correct git pre-commit hook
fcollonval f564c90
Lint code
fcollonval 4091fec
Upgrade yarn.lock
fcollonval 105449d
- Remove toolbar
fcollonval 5203b1f
Preview side-by-side in JLab
fcollonval fb8048e
Fix `watch` script
fcollonval c53a797
Add note about `watch` script and update folder structure
fcollonval 823c24f
develop doc: remove obsolete intro, and reformat
parmentelat a95f20d
a test notebook
parmentelat b21f231
an attempt at re-implementing the logic for all 5 slide types
parmentelat acae3fd
Merge pull request #1 from parmentelat/ft/jlab3
fcollonval d51d867
Multiple enhancements
fcollonval 7ee2bd1
Chalkboard and notes are working
fcollonval e46ba5c
Propagate activeCell from JLab to Rise
fcollonval d18dcd9
Add support for autolaunch
fcollonval efc3f5c
Fix open in new tab in preview
fcollonval c35a620
Fix yarn install and building steps, otherwise they failed when you s…
damianavila 73f8937
Update icon
fcollonval 03f6228
Fix fullscreen
fcollonval c95a034
Remove some ugly styles
fcollonval fd518eb
Support auto fullscreen
fcollonval 8f5be28
Load colocalized CSS style sheet
fcollonval 301c815
Load collocated `rise.css`
fcollonval 78956a2
add mention to pip install -e . in the dev doc
parmentelat 6845408
tweak dev doc again
parmentelat c6c2f41
add more samples of all the title levels
parmentelat e774243
a very rough attempt at fixing font sizes
parmentelat 03071d4
fixing the size of <li> elements (#4)
parmentelat 30554a9
fix speaker notes (#5)
YiqinZhang 023fd81
Fix toggle all RISE buttons on slides (#6)
YiqinZhang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Support auto fullscreen
- Loading branch information
commit fd518eba4ff7fe29f7ee50f47442be32f7783ff0
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import { LabIcon } from '@jupyterlab/ui-components'; | ||
|
||
import RISESvg from '../style/slideshow.svg'; | ||
import fullScreenSvg from '../style/fullscreen.svg'; | ||
|
||
export const RISEIcon = new LabIcon({ name: 'RISE', svgstr: RISESvg }); | ||
export const fullScreenIcon = new LabIcon({ | ||
name: 'RISE:fullScreen', | ||
svgstr: fullScreenSvg | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest adding a class name + style to move the checkbox a little bit down (e.g.
top: 4px; position: relative;
) as it is currently out of line: