Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.





Panel
borderColor#5f5f5f
bgColor#dfdfdf
titleColor#5f5f5f
borderStylesolid
titleTable of Contents

Page Tree
rootClean Energy Communities





HTML
<style>
	#com-atlassian-confluence th, 
	#com-atlassian-confluence td,
	#com-atlassian-confluence .confluenceTh, 
	#com-atlassian-confluence .confluenceTd {
		border: 0;
	}
</style>


HTML
<script type="text/javascript">
AJS.toInit(function () {
	    var show = getParameterByName('show_sidebar');
    var splitPos = AJS.$('#splitter .vsplitbar').css('left')
	    if((show === '1' && splitPos === '0px') || (show === '0' && splitPos != '0px')) {
		        AJS.$('#splitter-button').click();
	    }
});
 
function getParameterByName(name) {
    name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
    var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
    results = regex.exec(location.search);
    return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
</script>