Skip to content

Commit

Permalink
Add support for Aria-attributes and role
Browse files Browse the repository at this point in the history
  • Loading branch information
OleVik committed Feb 13, 2019
2 parents df19745 + 592b694 commit 96658e6
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
1. [](#improved)
- Add support for Aria-attributes and role

# v1.3.2

## 08-02-2019

1. [](#new)
- YouTube-plugin CSS fix

# v1.3.1

## 03-02-2019
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,10 @@ The synchronization between Presenter-mode and the Presentation happens by sendi

**Note:** The polling approach needs a stable server to work, more so than Grav itself. It has been tested extensively with PHP 7.1 and 7.2, running on Caddy Server and with PHP's built-in server, with a fairly standard production-setup of PHP. If your server-connection crashes with a 502 error -- usually with the error "No connection could be made because the target machine actively refused it.", it is because PHP is set up to forcibly time out despite being long-polled.

### Embedding

A Presentation-shortcode is available for embedding a presentation in another Page; `[presentation="route/to/presentation"]`. This creates an iFrame with the presentation in it.

## Contributing

### PHP Code Standards
Expand All @@ -335,4 +339,4 @@ As demonstrated by the `content`, `parser`, and `transport` options above, you c
- [Reveal.js](https://github.com/hakimel/reveal.js)-plugin
- Both are MIT-licensed
- Core development financed by [UiB](https://www.uib.no/), Save Content Functionality sponsored by [Paul Hibbitts](https://twitter.com/hibbittsdesign)
- Special thanks to [Paul Hibbitts](https://twitter.com/hibbittsdesign) for extensive testing
- Special thanks to [Paul Hibbitts](https://twitter.com/hibbittsdesign) for extensive testing
13 changes: 13 additions & 0 deletions css/presentation.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions scss/presentation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -349,4 +349,19 @@ $breakpoints: (extrasmall: 320px, small: 576px, medium: 768px, large: 992px, ext
a:active {
text-decoration: underline;
}
}

/* YouTube-plugin fix */
.grav-youtube {
width: 100% !important;
height: 100% !important;
display: block !important;
}

.grav-youtube iframe {
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
position: absolute !important;
}

0 comments on commit 96658e6

Please sign in to comment.