Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
- Include new version of Simplemenu
- Fix `forEach` bug
  • Loading branch information
Martinomagnifico committed Oct 17, 2022
1 parent ae30513 commit 77af9eb
Show file tree
Hide file tree
Showing 12 changed files with 233 additions and 411 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,10 @@
# Changelog

## [1.0.1] - 2022-10-17
- Started keeping the changelog.
### Changed
- Fix bug in `forEach()`


## [1.0.0] - 2021-12-08
- First commit
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Martijn De Jongh (Martino)
Copyright (c) 2022 Martijn De Jongh (Martino)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
53 changes: 34 additions & 19 deletions css/demo.css
@@ -1,61 +1,76 @@
.slides {
opacity: 0;
-webkit-transition: opacity .5s ease;
-o-transition: opacity .5s ease;
transition: opacity .5s ease; }
-webkit-transition: opacity 0.5s ease;
-o-transition: opacity 0.5s ease;
transition: opacity 0.5s ease;
}

.reveal.ready .slides {
opacity: 1; }
opacity: 1;
}

.backgrounds {
background: #1a1626; }
background: #1a1626;
}

.reveal code {
line-height: 1.5;
font-size: .66em; }
font-size: 0.66em;
}

.reveal pre, code {
background: #222D2F;
color: #ddd;
padding: 0.5rem 0.8rem;
border-radius: 0.5rem; }
border-radius: 0.5rem;
}

.reveal .hljs {
background: #222D2F; }
background: #222D2F;
}

code {
background: #2c3235;
background: #222D2F;
color: #ddd;
padding: 0.5rem 0.8rem;
border-radius: 0.5rem; }
border-radius: 0.5rem;
}

.reveal pre code {
max-height: 480px; }
max-height: 480px;
}

code.url {
background: #ddd;
color: #222D2F; }
color: #222D2F;
}

code.half {
color: rgba(255, 255, 255, 0.3); }
color: rgba(255, 255, 255, 0.3);
}

hr {
width: 50%; }
width: 50%;
}

.small {
font-size: .66em; }
font-size: 0.66em;
}

a.github-corner {
position: absolute;
z-index: 1;
top: 0;
width: clamp(50px, 8vmax, 80px);
line-height: 0;
color: rgba(255, 255, 255, 0.5); }
a.github-corner.bottom {
top: auto;
bottom: 3px; }
color: rgba(255, 255, 255, 0.5);
}
a.github-corner.bottom {
top: auto;
bottom: 3px;
}

a.github-corner:hover {
color: white; }
color: white;
}
8 changes: 4 additions & 4 deletions package.json
@@ -1,16 +1,16 @@
{
"name": "reveal.js-tagteam",
"version": "1.0.0",
"version": "1.0.1",
"description": "A plugin for Reveal.js 4 that is used to dynamically show only certain sections in presentations when you don't want to show everything. It uses URL parameters to set the needed sections.",
"keywords": "reveal, reveal.js, reveal-plugin, plugin, hide, hidden, portfolio",
"homepage": "https://github.com/Martinomagnifico/reveal.js-tagteam",
"repository": {
"type": "git",
"url": "https://github.com/Martinomagnifico/reveal.js-tagteam.git"
},
"author": "Martijn De Jongh",
"license": "MIT, Copyright (C) 2022 Martijn De Jongh",
"peerDependencies": {
"reveal.js": "^4.2"
},
"author": "Martijn De Jongh",
"license": "MIT, Copyright (C) 2021 Martijn De Jongh"
}
}
235 changes: 0 additions & 235 deletions plugin/simplemenu/plugin-src.js

This file was deleted.

0 comments on commit 77af9eb

Please sign in to comment.