Skip to content

Commit

Permalink
Fix wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonja Broda committed Mar 21, 2019
1 parent 54afb46 commit da9131d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "texnixe/kirby3-codepen",
"description": "Kirby 3 plugin providing a KirbyTag for CodePen embeds",
"version": "0.9.2",
"version": "0.9.3",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* Kirby 3 CodePen Embeds
*
* @version 0.9.2
* @version 0.9.3
* @author Sonja Broda <[email protected]>
* @copyright Sonja Broda <[email protected]>
* @link https://github.com/texnixe/kirby3-codepen
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Kirby 3 plugin providing a Kirbytag (shortcode) for CodePen embeds",
"author": "Sonja Broda <[email protected]>",
"license": "MIT",
"version": "0.9.2",
"version": "0.9.3",
"repository": {
"type": "git",
"url": "https://github.com/texnixe/kirby3-codepen"
Expand Down
2 changes: 1 addition & 1 deletion snippets/codepen.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="codepen-wrapper">
<p data-height="<?= $height ?>" data-theme-id="<?= $themeId ?>" data-slug-hash="<?= $id ?>" data-default-tab="<?= $defaultTab ?>" data-user="<?= $user ?>" data-embed-version="2" data-pen-title="<?= $title ?>" data-preview="<?= $preview ?>" class="codepen"><?= $content ?></p>
<p data-height="<?= $height ?>" data-theme-id="<?= $themeId ?>" data-slug-hash="<?= $id ?>" data-default-tab="<?= $defaultTab ?>" data-user="<?= $user ?>" data-embed-version="2" data-pen-title="<?= $title ?>" data-preview="<?= $preview ?>" class="codepen"></p>
</div>
<script async src="https://static.codepen.io/assets/embed/ei.js"></script>

0 comments on commit da9131d

Please sign in to comment.