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
0e864009
Commit
0e864009
authored
12 years ago
by
Hakim El Hattab
Browse files
Options
Downloads
Patches
Plain Diff
conditional loading of socket.io and the notes client js based on window host
parent
421afe63
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
index.html
+15
-5
15 additions, 5 deletions
index.html
js/reveal.slidenotes.js
+35
-0
35 additions, 0 deletions
js/reveal.slidenotes.js
lib/slidenotes/client.js
+1
-0
1 addition, 0 deletions
lib/slidenotes/client.js
lib/slidenotes/notes.html
+1
-1
1 addition, 1 deletion
lib/slidenotes/notes.html
with
52 additions
and
6 deletions
index.html
+
15
−
5
View file @
0e864009
...
...
@@ -4,7 +4,7 @@
<head>
<meta
charset=
"utf-8"
>
<title>
reveal.js
</title>
<title>
reveal.js
- HTML5 Presentations
</title>
<meta
name=
"description"
content=
"An easy to use CSS 3D slideshow tool for quickly creating good looking HTML presentations."
>
<meta
name=
"author"
content=
"Hakim El Hattab"
>
...
...
@@ -313,11 +313,21 @@ linkify( 'a' );
transition
:
query
.
transition
||
'
default
'
// default/cube/page/concave/linear(2d)
});
// Fire off syntax highlighting for potential code samples in the slides
hljs
.
initHighlightingOnLoad
();
</script>
<!-- The next two lines enable the speaker notes server -->
<script
src=
"socket.io/socket.io.js"
></script>
<script
src=
"lib/slidenotes/client.js"
></script>
// If we're runnning the notes node server we need to include some
// additional JS
if
(
window
.
location
.
host
===
'
localhost:1947
'
)
{
var
notes_socket
=
document
.
createElement
(
'
script
'
);
notes_socket
.
setAttribute
(
'
src
'
,
'
socket.io/socket.io.js
'
);
document
.
body
.
appendChild
(
notes_socket
);
var
notes_client
=
document
.
createElement
(
'
script
'
);
notes_client
.
setAttribute
(
'
src
'
,
'
lib/slidenotes/client.js
'
);
document
.
body
.
appendChild
(
notes_client
);
}
</script>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
js/reveal.slidenotes.js
0 → 100644
+
35
−
0
View file @
0e864009
(
function
()
{
// don't emit events from inside the previews themselves
var
qs
=
window
.
location
.
href
.
split
(
'
?
'
);
if
(
qs
.
length
>
1
&&
qs
[
1
].
match
(
'
receiver
'
))
{
return
;
}
var
socket
=
io
.
connect
(
window
.
location
.
origin
);
var
socketId
=
Math
.
random
().
toString
().
slice
(
2
);
console
.
log
(
'
View slide notes at
'
+
window
.
location
.
origin
+
'
/notes/
'
+
socketId
);
Reveal
.
addEventListener
(
'
slidechanged
'
,
function
(
event
)
{
var
nextindexh
;
var
nextindexv
;
var
slideElement
=
event
.
currentSlide
;
if
(
slideElement
.
nextElementSibling
&&
slideElement
.
parentNode
.
nodeName
==
'
SECTION
'
)
{
nextindexh
=
event
.
indexh
;
nextindexv
=
event
.
indexv
+
1
;
}
else
{
nextindexh
=
event
.
indexh
+
1
;
nextindexv
=
0
;
}
var
notes
=
slideElement
.
querySelector
(
'
aside.notes
'
);
var
slideData
=
{
notes
:
notes
?
notes
.
innerHTML
:
''
,
indexh
:
event
.
indexh
,
indexv
:
event
.
indexv
,
nextindexh
:
nextindexh
,
nextindexv
:
nextindexv
,
socketId
:
socketId
};
socket
.
emit
(
'
slidechanged
'
,
slideData
);
}
);
}());
This diff is collapsed.
Click to expand it.
lib/slidenotes/client.js
+
1
−
0
View file @
0e864009
...
...
@@ -5,6 +5,7 @@
var
socket
=
io
.
connect
(
window
.
location
.
origin
);
var
socketId
=
Math
.
random
().
toString
().
slice
(
2
);
console
.
log
(
'
View slide notes at
'
+
window
.
location
.
origin
+
'
/notes/
'
+
socketId
);
Reveal
.
addEventListener
(
'
slidechanged
'
,
function
(
event
)
{
...
...
This diff is collapsed.
Click to expand it.
lib/slidenotes/notes.html
+
1
−
1
View file @
0e864009
...
...
@@ -3,7 +3,7 @@
<head>
<meta
charset=
"utf-8"
>
<title>
Slide Notes
</title>
<title>
reveal.js -
Slide Notes
</title>
<style>
#notes
{
...
...
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