Skip to content

Commit

Permalink
STENCIL-2494, don't over-escape Carousel content text
Browse files Browse the repository at this point in the history
  • Loading branch information
bookernath committed Feb 20, 2017
1 parent 22af694 commit 6f1e74a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Fix z-index for product sale badges so they aren't above the menu [#926](https://github.com/bigcommerce/stencil/pull/926)
- Auto-expand product videos on the product page if the product has at least one video [#935](https://github.com/bigcommerce/stencil/pull/935)
- Fix an issue with special characters in search results for content pages [#933](https://github.com/bigcommerce/stencil/pull/933)
- Fix an issue with special characters in carousel text [#932](https://github.com/bigcommerce/stencil/pull/932)


## 1.5.2 (2017-02-14)
Expand Down
4 changes: 2 additions & 2 deletions templates/components/carousel-content.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="heroCarousel-content{{#unless show_background}} heroCarousel-content--empty{{/unless}}">
<h1 class="heroCarousel-title">{{heading}}</h1>
<p class="heroCarousel-description">{{text}}</p>
<h1 class="heroCarousel-title">{{{heading}}}</h1>
<p class="heroCarousel-description">{{{text}}}</p>
{{#if button_text}}
<span class="heroCarousel-action button button--primary button--large">{{button_text}}</span>
{{/if}}
Expand Down

0 comments on commit 6f1e74a

Please sign in to comment.