$(function(){$("body").on("click",".spoiler .spoiler-title",function(){$(this).parent(".spoiler").children(".spoiler-content").slideToggle();$(this).children(".spoiler-icon").toggleClass("show-icon").toggleClass("hide-icon");$(this).children(".spoiler-toggle").toggleText("Hide details","Show details")});$.fn.toggleText=function(a,b){this.text().trim()==a?this.text(b):this.text(a);return this}});