2023-03-21 07:12:50 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
2023-03-21 21:02:36 +00:00
|
|
|
$("#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 {
|
2023-03-23 18:17:18 +00:00
|
|
|
panel.style.maxHeight = parseInt(panel.scrollHeight) + 10 + "px";
|
2023-03-21 21:02:36 +00:00
|
|
|
parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px";
|
|
|
|
}
|
2023-03-24 21:10:17 +00:00
|
|
|
if (panel.style.paddingBottom) {
|
|
|
|
panel.style.paddingBottom = null;
|
2023-03-23 18:17:18 +00:00
|
|
|
} else {
|
2023-03-24 21:10:17 +00:00
|
|
|
panel.style.paddingBottom = "10px";
|
2023-03-23 18:17:18 +00:00
|
|
|
}
|
2023-03-21 21:02:36 +00:00
|
|
|
});
|
|
|
|
});
|
2023-03-21 07:12:50 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-03-27 19:56:00 +00:00
|
|
|
```{title} Movies
|
|
|
|
```
|
|
|
|
|
2023-03-21 07:12:50 +00:00
|
|
|
<div id="bing"></div>
|