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
S
Small Technology - Lille - March 21st 2019
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
presentations
aral
Small Technology - Lille - March 21st 2019
Compare Revisions
320cf223f2ad5d1d554c788d369f6530b8b8939c...088cd533fa92038afdfe3c6f8394ce979c368fec
Source
088cd533fa92038afdfe3c6f8394ce979c368fec
Select Git revision
...
Target
320cf223f2ad5d1d554c788d369f6530b8b8939c
Select Git revision
Compare
Commits (2)
Latest slides (remove slide numbers)
· 3c0cbe69
Aral Balkan
authored
Mar 20, 2019
3c0cbe69
Add patch script
· 088cd533
Aral Balkan
authored
Mar 20, 2019
088cd533
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
121 additions
and
103 deletions
+121
-103
index.html
index.html
+106
-103
patch
patch
+15
-0
No files found.
index.html
View file @
088cd533
This diff is collapsed.
Click to expand it.
patch
0 → 100755
View file @
088cd533
#!/bin/sh
# Patch the index.html file to remove the controls
# and the progress indicator from the main presentation
# and to set the opacity of the progress indicator to
# semi-transparent for the presentation display.
sed
-i
s/controls
\:\
true
,/controls
\:\
false
,/ index.html
sed
-i
s/progress
\:\
true
,/progress
\:\
false
,/ index.html
# Also, hide the slide numbers:
sed
-z
-i
's/.reveal\ .slide-number\ {\n\ \ display:\ none;/.reveal\ .slide-number\ {\n\ \ display:\ none\ !important;/'
index.html
echo
'Presentation patched to hide controls and progress indicator.'