FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cequel.github.io/plugin/notes-server/notes.html at master · cequel/cequel.github.io · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
cequel
/
cequel.github.io
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cequel.github.io
/
plugin
/
notes-server
/
notes.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
142 lines (118 loc) · 3.16 KB
Breadcrumbs
cequel.github.io
/
plugin
/
notes-server
/
notes.html
Copy path
File metadata and controls
142 lines (118 loc) · 3.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!doctype html
>
<
html
lang
="
en
"
>
<
head
>
<
meta
charset
="
utf-8
"
>
<
meta
name
="
viewport
"
content
="
width=1150
"
>
<
title
>
reveal.js - Slide Notes
</
title
>
<
style
>
body
{
font-family
:
Helvetica;
}
#
notes
{
font-size
:
24
px
;
width
:
640
px
;
margin-top
:
5
px
;
clear
:
left;
}
#
wrap-current-slide
{
width
:
640
px
;
height
:
512
px
;
float
:
left;
overflow
:
hidden;
}
#
current-slide
{
width
:
1280
px
;
height
:
1024
px
;
border
:
none;
-webkit-transform-origin
:
0
0
;
-moz-transform-origin
:
0
0
;
-ms-transform-origin
:
0
0
;
-o-transform-origin
:
0
0
;
transform-origin
:
0
0
;
-webkit-transform
:
scale
(
0.5
);
-moz-transform
:
scale
(
0.5
);
-ms-transform
:
scale
(
0.5
);
-o-transform
:
scale
(
0.5
);
transform
:
scale
(
0.5
);
}
#
wrap-next-slide
{
width
:
448
px
;
height
:
358
px
;
float
:
left;
margin
:
0
0
0
10
px
;
overflow
:
hidden;
}
#
next-slide
{
width
:
1280
px
;
height
:
1024
px
;
border
:
none;
-webkit-transform-origin
:
0
0
;
-moz-transform-origin
:
0
0
;
-ms-transform-origin
:
0
0
;
-o-transform-origin
:
0
0
;
transform-origin
:
0
0
;
-webkit-transform
:
scale
(
0.35
);
-moz-transform
:
scale
(
0.35
);
-ms-transform
:
scale
(
0.35
);
-o-transform
:
scale
(
0.35
);
transform
:
scale
(
0.35
);
}
.
slides
{
position
:
relative;
margin-bottom
:
10
px
;
border
:
1
px
solid black;
border-radius
:
2
px
;
background
:
rgb
(
28
,
30
,
32
);
}
.
slides
span
{
position
:
absolute;
top
:
3
px
;
left
:
3
px
;
font-weight
:
bold;
font-size
:
14
px
;
color
:
rgba
(
255
,
255
,
255
,
0.9
);
}
</
style
>
</
head
>
<
body
>
<
div
id
="
wrap-current-slide
"
class
="
slides
"
>
<
iframe
src
="
/?receiver
"
width
="
1280
"
height
="
1024
"
id
="
current-slide
"
>
</
iframe
>
</
div
>
<
div
id
="
wrap-next-slide
"
class
="
slides
"
>
<
iframe
src
="
/?receiver
"
width
="
640
"
height
="
512
"
id
="
next-slide
"
>
</
iframe
>
<
span
>
UPCOMING:
</
span
>
</
div
>
<
div
id
="
notes
"
>
</
div
>
<
script
src
="
/socket.io/socket.io.js
"
>
</
script
>
<
script
src
="
/plugin/markdown/marked.js
"
>
</
script
>
<
script
>
var
socketId
=
'{{socketId}}'
;
var
socket
=
io
.
connect
(
window
.
location
.
origin
)
;
var
notes
=
document
.
getElementById
(
'notes'
)
;
var
currentSlide
=
document
.
getElementById
(
'current-slide'
)
;
var
nextSlide
=
document
.
getElementById
(
'next-slide'
)
;
socket
.
on
(
'slidedata'
,
function
(
data
)
{
// ignore data from sockets that aren't ours
if
(
data
.
socketId
!==
socketId
)
{
return
;
}
if
(
data
.
markdown
)
{
notes
.
innerHTML
=
marked
(
data
.
notes
)
;
}
else
{
notes
.
innerHTML
=
data
.
notes
;
}
currentSlide
.
contentWindow
.
Reveal
.
slide
(
data
.
indexh
,
data
.
indexv
)
;
nextSlide
.
contentWindow
.
Reveal
.
slide
(
data
.
nextindexh
,
data
.
nextindexv
)
;
}
)
;
socket
.
on
(
'fragmentdata'
,
function
(
data
)
{
// ignore data from sockets that aren't ours
if
(
data
.
socketId
!==
socketId
)
{
return
;
}
if
(
data
.
fragment
===
'next'
)
{
currentSlide
.
contentWindow
.
Reveal
.
nextFragment
(
)
;
}
else
if
(
data
.
fragment
===
'previous'
)
{
currentSlide
.
contentWindow
.
Reveal
.
prevFragment
(
)
;
}
}
)
;
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL