Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix report from lighthouse #13

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Header.vue
@@ -1,15 +1,15 @@
<template>
<div id="header" v-show="displayHeader && displayUI">
<div id="logo" class="block_header">
<img src="../assets/logo_prestashop.png" />
<img src="../assets/logo_prestashop.png" alt="PrestaShop logo" />
</div>
<ul id="devices">
<DeviceButton deviceTrigger="desktop" icon="&#xE30C;" />
<DeviceButton deviceTrigger="tablet-h" icon="&#xE32F;"/>
<DeviceButton deviceTrigger="tablet-v" icon="&#xE32F;"/>
<DeviceButton deviceTrigger="mobile" icon="&#xE325;"/>
</ul>
<a v-if="demoShopIsBlankPrestashop" class="btn btn-download" target="_blank" href="http://www.prestashop.com/">
<a v-if="demoShopIsBlankPrestashop" class="btn btn-download" target="_blank" href="https://www.prestashop.com/" rel="noopener">
{{ $t("start") }}
</a>
<router-link to="back" class="btn btn-explore btn-visible-small btn-explore-bo"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Shop.vue
Expand Up @@ -7,7 +7,7 @@
<p v-show="noShopAssigned">{{ $t("creating shop") }}</p>
</div>
</div>
<iframe id="framelive" name="framelive" frameBorder="0"
<iframe title="Frame of demo shop" id="framelive" name="framelive" frameBorder="0"
@load="setIframeReady" :src="iframeUrl"
></iframe>
</div>
Expand Down