parent
ac1b32b88b
commit
ee2cecd675
@ -1,22 +1,18 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$("#bing").load("https://raw.githubusercontent.com/meisnate12/PMM-Image-Sets/master/movies/readme.md");
|
$("#bing").load("https://raw.githubusercontent.com/meisnate12/PMM-Image-Sets/master/movies/readme.md", function () {
|
||||||
var acc = document.getElementsByClassName("image-accordion");
|
$(".image-accordion").click(function () {
|
||||||
var i;
|
|
||||||
|
|
||||||
for (i = 0; i < acc.length; i++) {
|
|
||||||
acc[i].addEventListener("click", function() {
|
|
||||||
this.classList.toggle("image-active");
|
this.classList.toggle("image-active");
|
||||||
var parent = this.parentElement;
|
var parent = this.parentElement;
|
||||||
var panel = this.nextElementSibling;
|
var panel = this.nextElementSibling;
|
||||||
if (panel.style.maxHeight){
|
if (panel.style.maxHeight) {
|
||||||
panel.style.maxHeight = null;
|
panel.style.maxHeight = null;
|
||||||
} else {
|
} else {
|
||||||
panel.style.maxHeight = panel.scrollHeight + "px";
|
panel.style.maxHeight = panel.scrollHeight + "px";
|
||||||
parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px";
|
parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in new issue