Skip to content

Commit 70e97ca

Browse files
committed
Fix Shortcode
1 parent 9d3867d commit 70e97ca

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v1.1.0-beta.7
2+
## 09-01-2019
3+
4+
1. [](#bugfix)
5+
* Presentation-shortcode
6+
17
# v1.1.0-beta.6
28
## 09-01-2019
39

blueprints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Presentation
2-
version: 1.1.0-beta.6
2+
version: 1.1.0-beta.7
33
testing: true
44
description: Responsive navigational slideshows with Reveal.js
55
icon: arrows-alt

shortcodes/PresentationShortcode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function init()
2727
'presentation',
2828
function (ShortcodeInterface $sc) {
2929
$src = $sc->getParameter('src', $sc->getBbCode());
30-
return '<iframe src="./' . $src . '" class="presentation-iframe" frameborder="0" allowfullscreen>';
30+
return '<iframe src="./' . $src . '" class="presentation-iframe" frameborder="0" allowfullscreen></iframe>';
3131
}
3232
);
3333
}

0 commit comments

Comments
 (0)