Skip to content

Commit b02afe7

Browse files
committed
Removing lazyload for logo in order-confirmation.html
1 parent 656f7a5 commit b02afe7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## Draft
4+
- Fix logo not loading on order confirmation page [#1159](https://github.com/bigcommerce/cornerstone/pull/1159)
45

56
## 1.12.1 (2018-01-23)
67
- Fix event delegation error [#1151](https://github.com/bigcommerce/cornerstone/pull/1151)

templates/pages/order-confirmation.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1 class="is-srOnly">{{lang 'checkout.title'}}</h1>
1616
<h2 class="checkoutHeader-heading">
1717
<a class="checkoutHeader-link" href="{{urls.home}}">
1818
{{#if checkout.header_image}}
19-
<img alt="{{settings.store_logo.title}}" class="checkoutHeader-logo lazyload" id="logoImage" data-sizes="auto" src="{{cdn 'img/loading.svg'}}" data-src="{{ checkout.header_image }}"/>
19+
<img alt="{{settings.store_logo.title}}" class="checkoutHeader-logo" id="logoImage" src="{{ checkout.header_image }}"/>
2020
{{ else }}
2121
<span class="header-logo-text">{{settings.store_logo.title}}</span>
2222
{{/if}}

0 commit comments

Comments
 (0)