Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JUNCA24 RevealJS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PGI15-Teaching
JUNCA24 RevealJS
Commits
de50b415
Commit
de50b415
authored
4 years ago
by
Hakim El Hattab
Browse files
Options
Downloads
Patches
Plain Diff
minor adjustments for example decks
parent
8c52b32a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/barebones.html
+0
-6
0 additions, 6 deletions
examples/barebones.html
examples/multiple-presentations.html
+7
-7
7 additions, 7 deletions
examples/multiple-presentations.html
with
7 additions
and
13 deletions
examples/barebones.html
+
0
−
6
View file @
de50b415
<!doctype html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<title>
reveal.js - Barebones
</title>
<link
rel=
"stylesheet"
href=
"../dist/reveal.css"
>
</head>
<body>
<div
class=
"reveal"
>
<div
class=
"slides"
>
<section>
...
...
@@ -26,7 +21,6 @@
</section>
</div>
</div>
<script
src=
"../dist/reveal.es5.js"
></script>
...
...
This diff is collapsed.
Click to expand it.
examples/multiple-presentations.html
+
7
−
7
View file @
de50b415
...
...
@@ -33,23 +33,23 @@
<script
src=
"../dist/reveal.es5.js"
></script>
<script>
let
r
1
=
new
Reveal
(
document
.
querySelector
(
'
.deck1
'
),
{
let
deck
1
=
new
Reveal
(
document
.
querySelector
(
'
.deck1
'
),
{
embedded
:
true
,
keyboard
:
false
}
);
r
1
.
on
(
'
slidechanged
'
,
()
=>
{
deck
1
.
on
(
'
slidechanged
'
,
()
=>
{
console
.
log
(
'
Deck 1 slide changed
'
);
}
);
r
1
.
initialize
();
deck
1
.
initialize
();
let
r
2
=
new
Reveal
(
document
.
querySelector
(
'
.deck2
'
),
{
let
deck
2
=
new
Reveal
(
document
.
querySelector
(
'
.deck2
'
),
{
embedded
:
true
,
keyboard
:
false
}
);
r
2
.
initialize
().
then
(
()
=>
{
r
2
.
slide
(
1
);
deck
2
.
initialize
().
then
(
()
=>
{
deck
2
.
slide
(
1
);
}
);
r
2
.
on
(
'
slidechanged
'
,
()
=>
{
deck
2
.
on
(
'
slidechanged
'
,
()
=>
{
console
.
log
(
'
Deck 2 slide changed
'
);
}
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment