Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 11

...

HTML
<!-- Hide Confluence sidebar -->
<script>
<script type="text/javascript">
//<![CDATA[
  AJS.toInit(function () {
    if (AJS.$("div'.ia-fixed-sidebar".collapsed').width() > 55)length == 0) {
    AJS.Confluence.Sidebar.toggle(  AJS.$('div.ia-fixed-sidebar').addClass('collapsed').css('width','55px');
      AJS.$('div#main').css({'margin-left':'55px'});
    }
  });
//]]>
</script>


HTML
<!-- Bootstrap CSS -->
<link
  rel="stylesheet"
  href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
  integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
  crossorigin="anonymous"
/>

<!-- Remove elements for PDF export -->
<style>
  @media print {
    .noprint {
      display: none;
    }
    .print-timeline {
      height: 25%;
    }
  }
</style>

...

HTML
<!-- JS -->

<!-- Bootstrap -->
<script
  src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
  integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
  crossorigin="anonymous"
></script>
<script
  src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
  integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
  crossorigin="anonymous"
></script>
<script
  src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
  integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
  crossorigin="anonymous"
></script>

<!-- Activate tooltips -->
<script>
  $(function () {
    $('[data-toggle="tooltip"]').tooltip();
  });
</script>

...