Skip to content

Commit c518418

Browse files
committed
Revert "upgraded reveal.js version"
This reverts commit 3377a77.
1 parent 3377a77 commit c518418

File tree

6,596 files changed

+10932707
-2813
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,596 files changed

+10932707
-2813
lines changed

slides.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,15 +314,12 @@ static char msg[] = "Data";
314314
pointer. */
315315

316316
process_start(&example_process, NULL);
317-
```
318-
```
317+
319318
/* Send the PROCESS_EVENT_MSG event synchronously to
320319
"Example process", with a pointer to the message in the
321320
array 'msg'. */
322321
process_post_synch(&example_process,
323322
PROCESS_EVENT_CONTINUE, msg);
324-
```
325-
```
326323
/* Send the PROCESS_EVENT_MSG event asynchronously to
327324
"Example process", with a pointer to the message in the
328325
array 'msg'. */

static/CONTRIBUTING.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

static/Gruntfile.js

100755100644
Lines changed: 24 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/* global module:false */
22
module.exports = function(grunt) {
33
var port = grunt.option('port') || 8000;
4-
var base = grunt.option('base') || '.';
5-
64
// Project configuration
75
grunt.initConfig({
86
pkg: grunt.file.readJSON('package.json'),
@@ -13,7 +11,7 @@ module.exports = function(grunt) {
1311
' * http://lab.hakim.se/reveal-js\n' +
1412
' * MIT licensed\n' +
1513
' *\n' +
16-
' * Copyright (C) 2016 Hakim El Hattab, http://hakim.se\n' +
14+
' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n' +
1715
' */'
1816
},
1917

@@ -38,15 +36,19 @@ module.exports = function(grunt) {
3836
}
3937
},
4038
themes: {
41-
files: [
42-
{
43-
expand: true,
44-
cwd: 'css/theme/source',
45-
src: ['*.scss'],
46-
dest: 'css/theme',
47-
ext: '.css'
48-
}
49-
]
39+
files: {
40+
'css/theme/black.css': 'css/theme/source/black.scss',
41+
'css/theme/white.css': 'css/theme/source/white.scss',
42+
'css/theme/league.css': 'css/theme/source/league.scss',
43+
'css/theme/beige.css': 'css/theme/source/beige.scss',
44+
'css/theme/night.css': 'css/theme/source/night.scss',
45+
'css/theme/serif.css': 'css/theme/source/serif.scss',
46+
'css/theme/simple.css': 'css/theme/source/simple.scss',
47+
'css/theme/sky.css': 'css/theme/source/sky.scss',
48+
'css/theme/moon.css': 'css/theme/source/moon.scss',
49+
'css/theme/solarized.css': 'css/theme/source/solarized.scss',
50+
'css/theme/blood.css': 'css/theme/source/blood.scss'
51+
}
5052
}
5153
},
5254

@@ -93,9 +95,9 @@ module.exports = function(grunt) {
9395
server: {
9496
options: {
9597
port: port,
96-
base: base,
97-
livereload: true,
98-
open: true
98+
base: '.',
99+
livereload: true,
100+
open: true
99101
}
100102
}
101103
},
@@ -107,15 +109,14 @@ module.exports = function(grunt) {
107109
'js/**',
108110
'lib/**',
109111
'images/**',
110-
'plugin/**',
111-
'**.md'
112+
'plugin/**'
112113
]
113114
},
114115

115116
watch: {
116-
options: {
117-
livereload: true
118-
},
117+
options: {
118+
livereload: true
119+
},
119120
js: {
120121
files: [ 'Gruntfile.js', 'js/reveal.js' ],
121122
tasks: 'js'
@@ -128,12 +129,9 @@ module.exports = function(grunt) {
128129
files: [ 'css/reveal.scss' ],
129130
tasks: 'css-core'
130131
},
131-
html: {
132-
files: [ 'index.html']
133-
},
134-
markdown: {
135-
files: [ './*.md' ]
136-
}
132+
html: {
133+
files: [ 'index.html']
134+
}
137135
}
138136

139137
});

static/LICENSE

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2016 Hakim El Hattab, http://hakim.se
1+
Copyright (C) 2015 Hakim El Hattab, http://hakim.se
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)