mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-12-19 17:33:25 +00:00
27 lines
No EOL
948 B
Markdown
27 lines
No EOL
948 B
Markdown
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$("#bing").load("https://raw.githubusercontent.com/meisnate12/PMM-Image-Sets/master/movies/readme.md", function () {
|
|
$(".image-accordion").click(function () {
|
|
this.classList.toggle("image-active");
|
|
var parent = this.parentElement;
|
|
var panel = this.nextElementSibling;
|
|
if (panel.style.maxHeight) {
|
|
panel.style.maxHeight = null;
|
|
} else {
|
|
panel.style.maxHeight = parseInt(panel.scrollHeight) + 10 + "px";
|
|
parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px";
|
|
}
|
|
if (panel.style.paddingBottom) {
|
|
panel.style.paddingBottom = null;
|
|
} else {
|
|
panel.style.paddingBottom = "10px";
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
```{title} Movies
|
|
```
|
|
|
|
<div id="bing"></div> |