Skip to content

Commit

Permalink
Merge branch 'release' into 'master'
Browse files Browse the repository at this point in the history
Release 76.0

See merge request buckinghamshire-council/bc!728
  • Loading branch information
KIRA009 committed Jul 23, 2024
2 parents d25959b + 29658f2 commit a5758e0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 87 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History

## 76.0 (2024-07-23)

Compare: <https://git.torchbox.com/buckinghamshire-council/bc/compare/75.0...76.0>

- Change div to section on cards_block.html to prevent aria-label warning
- Remove search-header--fis

## 75.0 (2024-07-10)

Compare: <https://git.torchbox.com/buckinghamshire-council/bc/compare/74.0...75.0>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{% if page_class == 'CategoryPage' or page_class == 'CategoryTypeOnePage' or page_class == 'CategoryTypeTwoPage' %}
<div
<section
aria-label="Subpages"
class="grid grid--fis-index grid--index grid--thirds"
data-height-equalizer
>
{% for card in value %}
{% include "patterns/molecules/page-card/page-card.html" with classes="card--fis-index" has_heading=has_heading page=card.value.specific %}
{% endfor %}
</div>
</section>
{% endif %}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@
</div>
</div>

{% include "patterns/organisms/search-header/search-header--fis.html" %}

This file was deleted.

This file was deleted.

29 changes: 0 additions & 29 deletions bc/static_src/javascript/components/toggle-target.js

This file was deleted.

7 changes: 0 additions & 7 deletions bc/static_src/javascript/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Carousel from './components/carousel';
import ConditionalField from './components/conditional-field';
import HeightEqualizer from './components/height-equalizer';
import ProgressBar from './components/progress-bar';
import ToggleTarget from './components/toggle-target';
import VideoModal from './components/video-modal';
import FormSubmit from './components/form-submit';
import Filters from './components/job-filters';
Expand Down Expand Up @@ -112,12 +111,6 @@ document.addEventListener('DOMContentLoaded', () => {
new ProgressBar(progressbar);
}

for (const toggleTarget of document.querySelectorAll(
ToggleTarget.selector(),
)) {
new ToggleTarget(toggleTarget);
}

for (const videomodal of document.querySelectorAll(VideoModal.selector())) {
new VideoModal(videomodal);
}
Expand Down

0 comments on commit a5758e0

Please sign in to comment.