Skip to content

Commit

Permalink
Merge pull request #10 from gavinr/devsummit-2019
Browse files Browse the repository at this point in the history
DevSummit 2019
  • Loading branch information
gavinr committed Dec 21, 2018
2 parents f384524 + bbb4bdb commit 2de193a
Show file tree
Hide file tree
Showing 71 changed files with 12,419 additions and 1,088 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ tmp/**
node_modules/
.sass-cache
css/reveal.min.css
js/reveal.min.js
js/reveal.min.js
5 changes: 3 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function(grunt) {
' * http://revealjs.com\n' +
' * MIT licensed\n' +
' *\n' +
' * Copyright (C) 2017 Hakim El Hattab, http://hakim.se\n' +
' * Copyright (C) 2018 Hakim El Hattab, http://hakim.se\n' +
' */'
},

Expand All @@ -26,7 +26,7 @@ module.exports = function(grunt) {
uglify: {
options: {
banner: '<%= meta.banner %>\n',
screwIE8: false
ie8: true
},
build: {
src: 'js/reveal.js',
Expand Down Expand Up @@ -78,6 +78,7 @@ module.exports = function(grunt) {
eqnull: true,
browser: true,
expr: true,
loopfunc: true,
globals: {
head: false,
module: false,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ A jumpstart for folks that want to give a presentation using [reveal.js](https:/

Live demos:

* [2019 DevSummit template](https://esri.github.io/reveal.js/devsummit-2019.html)
* [2018 FedUC / DC DevSummit](https://esri.github.io/reveal.js/feduc-2018.html)
* [2018 DevSummit template](https://esri.github.io/reveal.js/devsummit-2018.html)

For archived older versions, please see [releases](https://github.com/esri/reveal.js/releases).

Expand Down
27 changes: 27 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "reveal.js",
"version": "3.7.0",
"main": [
"js/reveal.js",
"css/reveal.css"
],
"homepage": "http://revealjs.com",
"license": "MIT",
"description": "The HTML Presentation Framework",
"authors": [
"Hakim El Hattab <hakim.elhattab@gmail.com>"
],
"dependencies": {
"headjs": "~1.0.3"
},
"repository": {
"type": "git",
"url": "git://github.com/hakimel/reveal.js.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test"
]
}
22 changes: 4 additions & 18 deletions css/print/pdf.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,8 @@ ul, ol, div, p {
overflow: visible;
display: block;

-webkit-perspective: none;
-moz-perspective: none;
-ms-perspective: none;
perspective: none;

-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
-moz-perspective-origin: 50% 50%;
-ms-perspective-origin: 50% 50%;
perspective-origin: 50% 50%;
perspective: none;
perspective-origin: 50% 50%;
}

.reveal .slides .pdf-page {
Expand All @@ -103,15 +96,8 @@ ul, ol, div, p {

opacity: 1 !important;

-webkit-transform-style: flat !important;
-moz-transform-style: flat !important;
-ms-transform-style: flat !important;
transform-style: flat !important;

-webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
transform: none !important;
transform-style: flat !important;
transform: none !important;
}

.reveal section.stack {
Expand Down
Loading

0 comments on commit 2de193a

Please sign in to comment.