slide_hero 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/slide_hero/code.rb +1 -1
- data/lib/slide_hero/grouped_slides.rb +1 -1
- data/lib/slide_hero/list.rb +6 -3
- data/lib/slide_hero/list_point.rb +1 -1
- data/lib/slide_hero/presentation.rb +1 -2
- data/lib/slide_hero/slide.rb +1 -2
- data/lib/slide_hero/version.rb +1 -1
- data/lib/slide_hero/views/ordered_list.html.erb +1 -1
- data/lib/slide_hero/views/unordered_list.html.erb +1 -1
- data/lib/slide_hero.rb +9 -0
- data/slide_hero.gemspec +7 -7
- data/test/slide_hero/list_spec.rb +31 -9
- data/vendor/reveal.js/.gitignore +0 -0
- data/vendor/reveal.js/.travis.yml +0 -0
- data/vendor/reveal.js/Gruntfile.js +12 -7
- data/vendor/reveal.js/LICENSE +0 -0
- data/vendor/reveal.js/README.md +168 -33
- data/vendor/reveal.js/css/print/paper.css +0 -0
- data/vendor/reveal.js/css/print/pdf.css +1 -1
- data/vendor/reveal.js/css/reveal.css +248 -17
- data/vendor/reveal.js/css/reveal.min.css +1 -1
- data/vendor/reveal.js/css/theme/README.md +3 -1
- data/vendor/reveal.js/css/theme/beige.css +7 -1
- data/vendor/reveal.js/css/theme/blood.css +175 -0
- data/vendor/reveal.js/css/theme/default.css +7 -1
- data/vendor/reveal.js/css/theme/moon.css +7 -1
- data/vendor/reveal.js/css/theme/night.css +7 -1
- data/vendor/reveal.js/css/theme/serif.css +7 -1
- data/vendor/reveal.js/css/theme/simple.css +7 -1
- data/vendor/reveal.js/css/theme/sky.css +7 -1
- data/vendor/reveal.js/css/theme/solarized.css +7 -1
- data/vendor/reveal.js/css/theme/source/beige.scss +0 -0
- data/vendor/reveal.js/css/theme/source/blood.scss +91 -0
- data/vendor/reveal.js/css/theme/source/default.scss +0 -0
- data/vendor/reveal.js/css/theme/source/moon.scss +0 -0
- data/vendor/reveal.js/css/theme/source/night.scss +0 -0
- data/vendor/reveal.js/css/theme/source/serif.scss +0 -0
- data/vendor/reveal.js/css/theme/source/simple.scss +0 -0
- data/vendor/reveal.js/css/theme/source/sky.scss +0 -0
- data/vendor/reveal.js/css/theme/source/solarized.scss +0 -0
- data/vendor/reveal.js/css/theme/template/mixins.scss +0 -0
- data/vendor/reveal.js/css/theme/template/settings.scss +0 -0
- data/vendor/reveal.js/css/theme/template/theme.scss +8 -1
- data/vendor/reveal.js/index.html +388 -0
- data/vendor/reveal.js/js/reveal.js +887 -293
- data/vendor/reveal.js/js/reveal.min.js +3 -2
- data/vendor/reveal.js/lib/css/zenburn.css +16 -17
- data/vendor/reveal.js/lib/font/league_gothic-webfont.svg +0 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.ttf +0 -0
- data/vendor/reveal.js/lib/font/league_gothic-webfont.woff +0 -0
- data/vendor/reveal.js/lib/font/league_gothic_license +0 -0
- data/vendor/reveal.js/lib/js/classList.js +0 -0
- data/vendor/reveal.js/lib/js/head.min.js +0 -0
- data/vendor/reveal.js/lib/js/html5shiv.js +0 -0
- data/vendor/reveal.js/package.json +10 -9
- data/vendor/reveal.js/plugin/highlight/highlight.js +3 -2
- data/vendor/reveal.js/plugin/leap/leap.js +0 -0
- data/vendor/reveal.js/plugin/markdown/example.html +34 -3
- data/vendor/reveal.js/plugin/markdown/example.md +0 -0
- data/vendor/reveal.js/plugin/markdown/markdown.js +373 -201
- data/vendor/reveal.js/plugin/markdown/marked.js +0 -0
- data/vendor/reveal.js/plugin/multiplex/client.js +0 -0
- data/vendor/reveal.js/plugin/multiplex/index.js +0 -0
- data/vendor/reveal.js/plugin/multiplex/master.js +2 -1
- data/vendor/reveal.js/plugin/notes/notes.html +10 -2
- data/vendor/reveal.js/plugin/notes/notes.js +0 -0
- data/vendor/reveal.js/plugin/notes-server/client.js +0 -0
- data/vendor/reveal.js/plugin/notes-server/index.js +0 -0
- data/vendor/reveal.js/plugin/notes-server/notes.html +0 -0
- data/vendor/reveal.js/plugin/postmessage/example.html +0 -0
- data/vendor/reveal.js/plugin/postmessage/postmessage.js +0 -0
- data/vendor/reveal.js/plugin/print-pdf/print-pdf.js +0 -0
- data/vendor/reveal.js/plugin/remotes/remotes.js +4 -4
- data/vendor/reveal.js/plugin/search/search.js +0 -0
- data/vendor/reveal.js/plugin/zoom-js/zoom.js +3 -1
- data/vendor/reveal.js/{examples → test/examples}/assets/image1.png +0 -0
- data/vendor/reveal.js/{examples → test/examples}/assets/image2.png +0 -0
- data/vendor/reveal.js/{examples → test/examples}/barebones.html +2 -3
- data/vendor/reveal.js/{examples → test/examples}/embedded-media.html +4 -4
- data/vendor/reveal.js/{examples → test/examples}/math.html +6 -6
- data/vendor/reveal.js/{examples → test/examples}/slide-backgrounds.html +26 -5
- data/vendor/reveal.js/test/qunit-1.12.0.css +244 -0
- data/vendor/reveal.js/test/qunit-1.12.0.js +2212 -0
- data/vendor/reveal.js/test/test-markdown-element-attributes.html +134 -0
- data/vendor/reveal.js/test/test-markdown-element-attributes.js +46 -0
- data/vendor/reveal.js/test/test-markdown-slide-attributes.html +128 -0
- data/vendor/reveal.js/test/test-markdown-slide-attributes.js +47 -0
- data/vendor/reveal.js/test/test-markdown.html +52 -0
- data/vendor/reveal.js/test/test-markdown.js +15 -0
- data/vendor/reveal.js/test/test.html +81 -0
- data/vendor/reveal.js/test/test.js +438 -0
- metadata +58 -45
@@ -17,11 +17,11 @@
|
|
17
17
|
* Detects if notes are enable and the current page is opened inside an /iframe
|
18
18
|
* this prevents loading Remotes.io several times
|
19
19
|
*/
|
20
|
-
var
|
21
|
-
|
20
|
+
var isNotesAndIframe = (function(){
|
21
|
+
return window.RevealNotes && !(self == top);
|
22
22
|
})();
|
23
23
|
|
24
|
-
if(!hasTouch && !
|
24
|
+
if(!hasTouch && !isNotesAndIframe){
|
25
25
|
head.ready( 'remotes.ne.min.js', function() {
|
26
26
|
new Remotes("preview")
|
27
27
|
.on("swipe-left", function(e){ Reveal.right(); })
|
@@ -34,6 +34,6 @@
|
|
34
34
|
;
|
35
35
|
} );
|
36
36
|
|
37
|
-
head.js('https://
|
37
|
+
head.js('https://hakim-static.s3.amazonaws.com/reveal-js/remotes.ne.min.js');
|
38
38
|
}
|
39
39
|
})(window);
|
File without changes
|
@@ -3,7 +3,9 @@
|
|
3
3
|
var isEnabled = true;
|
4
4
|
|
5
5
|
document.querySelector( '.reveal' ).addEventListener( 'mousedown', function( event ) {
|
6
|
-
|
6
|
+
var modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';
|
7
|
+
|
8
|
+
if( event[ modifier ] && isEnabled ) {
|
7
9
|
event.preventDefault();
|
8
10
|
zoom.to({ element: event.target, pan: false });
|
9
11
|
}
|
File without changes
|
File without changes
|
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
<title>reveal.js - Barebones</title>
|
8
8
|
|
9
|
-
<link rel="stylesheet" href="
|
9
|
+
<link rel="stylesheet" href="../../css/reveal.min.css">
|
10
10
|
</head>
|
11
11
|
|
12
12
|
<body>
|
@@ -29,8 +29,7 @@
|
|
29
29
|
|
30
30
|
</div>
|
31
31
|
|
32
|
-
<script src="
|
33
|
-
<script src="../js/reveal.min.js"></script>
|
32
|
+
<script src="../../js/reveal.min.js"></script>
|
34
33
|
|
35
34
|
<script>
|
36
35
|
|
@@ -8,8 +8,8 @@
|
|
8
8
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
10
10
|
|
11
|
-
<link rel="stylesheet" href="
|
12
|
-
<link rel="stylesheet" href="
|
11
|
+
<link rel="stylesheet" href="../../css/reveal.min.css">
|
12
|
+
<link rel="stylesheet" href="../../css/theme/default.css" id="theme">
|
13
13
|
</head>
|
14
14
|
|
15
15
|
<body>
|
@@ -34,8 +34,8 @@
|
|
34
34
|
|
35
35
|
</div>
|
36
36
|
|
37
|
-
<script src="
|
38
|
-
<script src="
|
37
|
+
<script src="../../lib/js/head.min.js"></script>
|
38
|
+
<script src="../../js/reveal.min.js"></script>
|
39
39
|
|
40
40
|
<script>
|
41
41
|
|
@@ -8,8 +8,8 @@
|
|
8
8
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
10
10
|
|
11
|
-
<link rel="stylesheet" href="
|
12
|
-
<link rel="stylesheet" href="
|
11
|
+
<link rel="stylesheet" href="../../css/reveal.min.css">
|
12
|
+
<link rel="stylesheet" href="../../css/theme/night.css" id="theme">
|
13
13
|
</head>
|
14
14
|
|
15
15
|
<body>
|
@@ -159,8 +159,8 @@
|
|
159
159
|
|
160
160
|
</div>
|
161
161
|
|
162
|
-
<script src="
|
163
|
-
<script src="
|
162
|
+
<script src="../../lib/js/head.min.js"></script>
|
163
|
+
<script src="../../js/reveal.min.js"></script>
|
164
164
|
|
165
165
|
<script>
|
166
166
|
|
@@ -174,8 +174,8 @@
|
|
174
174
|
},
|
175
175
|
|
176
176
|
dependencies: [
|
177
|
-
{ src: '
|
178
|
-
{ src: '
|
177
|
+
{ src: '../../lib/js/classList.js' },
|
178
|
+
{ src: '../../plugin/math/math.js', async: true }
|
179
179
|
]
|
180
180
|
});
|
181
181
|
|
@@ -8,8 +8,8 @@
|
|
8
8
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
10
10
|
|
11
|
-
<link rel="stylesheet" href="
|
12
|
-
<link rel="stylesheet" href="
|
11
|
+
<link rel="stylesheet" href="../../css/reveal.min.css">
|
12
|
+
<link rel="stylesheet" href="../../css/theme/serif.css" id="theme">
|
13
13
|
</head>
|
14
14
|
|
15
15
|
<body>
|
@@ -75,12 +75,33 @@
|
|
75
75
|
<h2>Same background twice (2/2)</h2>
|
76
76
|
</section>
|
77
77
|
|
78
|
+
<section>
|
79
|
+
<section data-background="#417203">
|
80
|
+
<h2>Same background twice vertical (1/2)</h2>
|
81
|
+
</section>
|
82
|
+
<section data-background="#417203">
|
83
|
+
<h2>Same background twice vertical (2/2)</h2>
|
84
|
+
</section>
|
85
|
+
</section>
|
86
|
+
|
87
|
+
<section data-background="#934f4d">
|
88
|
+
<h2>Same background from horizontal to vertical (1/3)</h2>
|
89
|
+
</section>
|
90
|
+
<section>
|
91
|
+
<section data-background="#934f4d">
|
92
|
+
<h2>Same background from horizontal to vertical (2/3)</h2>
|
93
|
+
</section>
|
94
|
+
<section data-background="#934f4d">
|
95
|
+
<h2>Same background from horizontal to vertical (3/3)</h2>
|
96
|
+
</section>
|
97
|
+
</section>
|
98
|
+
|
78
99
|
</div>
|
79
100
|
|
80
101
|
</div>
|
81
102
|
|
82
|
-
<script src="
|
83
|
-
<script src="
|
103
|
+
<script src="../../lib/js/head.min.js"></script>
|
104
|
+
<script src="../../js/reveal.min.js"></script>
|
84
105
|
|
85
106
|
<script>
|
86
107
|
|
@@ -92,7 +113,7 @@
|
|
92
113
|
|
93
114
|
transition: 'linear',
|
94
115
|
// transitionSpeed: 'slow',
|
95
|
-
// backgroundTransition: '
|
116
|
+
// backgroundTransition: 'slide'
|
96
117
|
});
|
97
118
|
|
98
119
|
</script>
|
@@ -0,0 +1,244 @@
|
|
1
|
+
/**
|
2
|
+
* QUnit v1.12.0 - A JavaScript Unit Testing Framework
|
3
|
+
*
|
4
|
+
* http://qunitjs.com
|
5
|
+
*
|
6
|
+
* Copyright 2012 jQuery Foundation and other contributors
|
7
|
+
* Released under the MIT license.
|
8
|
+
* http://jquery.org/license
|
9
|
+
*/
|
10
|
+
|
11
|
+
/** Font Family and Sizes */
|
12
|
+
|
13
|
+
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
|
14
|
+
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
|
15
|
+
}
|
16
|
+
|
17
|
+
#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
|
18
|
+
#qunit-tests { font-size: smaller; }
|
19
|
+
|
20
|
+
|
21
|
+
/** Resets */
|
22
|
+
|
23
|
+
#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
|
24
|
+
margin: 0;
|
25
|
+
padding: 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
|
29
|
+
/** Header */
|
30
|
+
|
31
|
+
#qunit-header {
|
32
|
+
padding: 0.5em 0 0.5em 1em;
|
33
|
+
|
34
|
+
color: #8699a4;
|
35
|
+
background-color: #0d3349;
|
36
|
+
|
37
|
+
font-size: 1.5em;
|
38
|
+
line-height: 1em;
|
39
|
+
font-weight: normal;
|
40
|
+
|
41
|
+
border-radius: 5px 5px 0 0;
|
42
|
+
-moz-border-radius: 5px 5px 0 0;
|
43
|
+
-webkit-border-top-right-radius: 5px;
|
44
|
+
-webkit-border-top-left-radius: 5px;
|
45
|
+
}
|
46
|
+
|
47
|
+
#qunit-header a {
|
48
|
+
text-decoration: none;
|
49
|
+
color: #c2ccd1;
|
50
|
+
}
|
51
|
+
|
52
|
+
#qunit-header a:hover,
|
53
|
+
#qunit-header a:focus {
|
54
|
+
color: #fff;
|
55
|
+
}
|
56
|
+
|
57
|
+
#qunit-testrunner-toolbar label {
|
58
|
+
display: inline-block;
|
59
|
+
padding: 0 .5em 0 .1em;
|
60
|
+
}
|
61
|
+
|
62
|
+
#qunit-banner {
|
63
|
+
height: 5px;
|
64
|
+
}
|
65
|
+
|
66
|
+
#qunit-testrunner-toolbar {
|
67
|
+
padding: 0.5em 0 0.5em 2em;
|
68
|
+
color: #5E740B;
|
69
|
+
background-color: #eee;
|
70
|
+
overflow: hidden;
|
71
|
+
}
|
72
|
+
|
73
|
+
#qunit-userAgent {
|
74
|
+
padding: 0.5em 0 0.5em 2.5em;
|
75
|
+
background-color: #2b81af;
|
76
|
+
color: #fff;
|
77
|
+
text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
|
78
|
+
}
|
79
|
+
|
80
|
+
#qunit-modulefilter-container {
|
81
|
+
float: right;
|
82
|
+
}
|
83
|
+
|
84
|
+
/** Tests: Pass/Fail */
|
85
|
+
|
86
|
+
#qunit-tests {
|
87
|
+
list-style-position: inside;
|
88
|
+
}
|
89
|
+
|
90
|
+
#qunit-tests li {
|
91
|
+
padding: 0.4em 0.5em 0.4em 2.5em;
|
92
|
+
border-bottom: 1px solid #fff;
|
93
|
+
list-style-position: inside;
|
94
|
+
}
|
95
|
+
|
96
|
+
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
|
97
|
+
display: none;
|
98
|
+
}
|
99
|
+
|
100
|
+
#qunit-tests li strong {
|
101
|
+
cursor: pointer;
|
102
|
+
}
|
103
|
+
|
104
|
+
#qunit-tests li a {
|
105
|
+
padding: 0.5em;
|
106
|
+
color: #c2ccd1;
|
107
|
+
text-decoration: none;
|
108
|
+
}
|
109
|
+
#qunit-tests li a:hover,
|
110
|
+
#qunit-tests li a:focus {
|
111
|
+
color: #000;
|
112
|
+
}
|
113
|
+
|
114
|
+
#qunit-tests li .runtime {
|
115
|
+
float: right;
|
116
|
+
font-size: smaller;
|
117
|
+
}
|
118
|
+
|
119
|
+
.qunit-assert-list {
|
120
|
+
margin-top: 0.5em;
|
121
|
+
padding: 0.5em;
|
122
|
+
|
123
|
+
background-color: #fff;
|
124
|
+
|
125
|
+
border-radius: 5px;
|
126
|
+
-moz-border-radius: 5px;
|
127
|
+
-webkit-border-radius: 5px;
|
128
|
+
}
|
129
|
+
|
130
|
+
.qunit-collapsed {
|
131
|
+
display: none;
|
132
|
+
}
|
133
|
+
|
134
|
+
#qunit-tests table {
|
135
|
+
border-collapse: collapse;
|
136
|
+
margin-top: .2em;
|
137
|
+
}
|
138
|
+
|
139
|
+
#qunit-tests th {
|
140
|
+
text-align: right;
|
141
|
+
vertical-align: top;
|
142
|
+
padding: 0 .5em 0 0;
|
143
|
+
}
|
144
|
+
|
145
|
+
#qunit-tests td {
|
146
|
+
vertical-align: top;
|
147
|
+
}
|
148
|
+
|
149
|
+
#qunit-tests pre {
|
150
|
+
margin: 0;
|
151
|
+
white-space: pre-wrap;
|
152
|
+
word-wrap: break-word;
|
153
|
+
}
|
154
|
+
|
155
|
+
#qunit-tests del {
|
156
|
+
background-color: #e0f2be;
|
157
|
+
color: #374e0c;
|
158
|
+
text-decoration: none;
|
159
|
+
}
|
160
|
+
|
161
|
+
#qunit-tests ins {
|
162
|
+
background-color: #ffcaca;
|
163
|
+
color: #500;
|
164
|
+
text-decoration: none;
|
165
|
+
}
|
166
|
+
|
167
|
+
/*** Test Counts */
|
168
|
+
|
169
|
+
#qunit-tests b.counts { color: black; }
|
170
|
+
#qunit-tests b.passed { color: #5E740B; }
|
171
|
+
#qunit-tests b.failed { color: #710909; }
|
172
|
+
|
173
|
+
#qunit-tests li li {
|
174
|
+
padding: 5px;
|
175
|
+
background-color: #fff;
|
176
|
+
border-bottom: none;
|
177
|
+
list-style-position: inside;
|
178
|
+
}
|
179
|
+
|
180
|
+
/*** Passing Styles */
|
181
|
+
|
182
|
+
#qunit-tests li li.pass {
|
183
|
+
color: #3c510c;
|
184
|
+
background-color: #fff;
|
185
|
+
border-left: 10px solid #C6E746;
|
186
|
+
}
|
187
|
+
|
188
|
+
#qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; }
|
189
|
+
#qunit-tests .pass .test-name { color: #366097; }
|
190
|
+
|
191
|
+
#qunit-tests .pass .test-actual,
|
192
|
+
#qunit-tests .pass .test-expected { color: #999999; }
|
193
|
+
|
194
|
+
#qunit-banner.qunit-pass { background-color: #C6E746; }
|
195
|
+
|
196
|
+
/*** Failing Styles */
|
197
|
+
|
198
|
+
#qunit-tests li li.fail {
|
199
|
+
color: #710909;
|
200
|
+
background-color: #fff;
|
201
|
+
border-left: 10px solid #EE5757;
|
202
|
+
white-space: pre;
|
203
|
+
}
|
204
|
+
|
205
|
+
#qunit-tests > li:last-child {
|
206
|
+
border-radius: 0 0 5px 5px;
|
207
|
+
-moz-border-radius: 0 0 5px 5px;
|
208
|
+
-webkit-border-bottom-right-radius: 5px;
|
209
|
+
-webkit-border-bottom-left-radius: 5px;
|
210
|
+
}
|
211
|
+
|
212
|
+
#qunit-tests .fail { color: #000000; background-color: #EE5757; }
|
213
|
+
#qunit-tests .fail .test-name,
|
214
|
+
#qunit-tests .fail .module-name { color: #000000; }
|
215
|
+
|
216
|
+
#qunit-tests .fail .test-actual { color: #EE5757; }
|
217
|
+
#qunit-tests .fail .test-expected { color: green; }
|
218
|
+
|
219
|
+
#qunit-banner.qunit-fail { background-color: #EE5757; }
|
220
|
+
|
221
|
+
|
222
|
+
/** Result */
|
223
|
+
|
224
|
+
#qunit-testresult {
|
225
|
+
padding: 0.5em 0.5em 0.5em 2.5em;
|
226
|
+
|
227
|
+
color: #2b81af;
|
228
|
+
background-color: #D2E0E6;
|
229
|
+
|
230
|
+
border-bottom: 1px solid white;
|
231
|
+
}
|
232
|
+
#qunit-testresult .module-name {
|
233
|
+
font-weight: bold;
|
234
|
+
}
|
235
|
+
|
236
|
+
/** Fixture */
|
237
|
+
|
238
|
+
#qunit-fixture {
|
239
|
+
position: absolute;
|
240
|
+
top: -10000px;
|
241
|
+
left: -10000px;
|
242
|
+
width: 1000px;
|
243
|
+
height: 1000px;
|
244
|
+
}
|