Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Fixed w3c validator
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofPajak committed Sep 17, 2018
1 parent cfcf34a commit 06bc1a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -5108,7 +5108,7 @@ protected virtual void InstallSettings(bool installSampleData)
ShowCategoryProductNumberIncludingSubcategories = false,
CategoryBreadcrumbEnabled = true,
ShowShareButton = true,
PageShareCode = "<!-- AddThis Button BEGIN --><div class=\"addthis_toolbox addthis_default_style \"><a class=\"addthis_button_preferred_1\"></a><a class=\"addthis_button_preferred_2\"></a><a class=\"addthis_button_preferred_3\"></a><a class=\"addthis_button_preferred_4\"></a><a class=\"addthis_button_compact\"></a><a class=\"addthis_counter addthis_bubble_style\"></a></div><script type=\"text/javascript\" src=\"http://s7.addthis.com/js/250/addthis_widget.js#pubid=grandnode\"></script><!-- AddThis Button END -->",
PageShareCode = "<!-- AddThis Button BEGIN --><div class=\"addthis_toolbox addthis_default_style \"><a class=\"addthis_button_preferred_1\"></a><a class=\"addthis_button_preferred_2\"></a><a class=\"addthis_button_preferred_3\"></a><a class=\"addthis_button_preferred_4\"></a><a class=\"addthis_button_compact\"></a><a class=\"addthis_counter addthis_bubble_style\"></a></div><script src=\"http://s7.addthis.com/js/250/addthis_widget.js#pubid=grandnode\"></script><!-- AddThis Button END -->",
ProductReviewsMustBeApproved = false,
DefaultProductRatingValue = 5,
AllowAnonymousUsersToReviewProduct = false,
Expand Down
2 changes: 1 addition & 1 deletion Grand.Web/Views/Product/_AddToCart.cshtml
Expand Up @@ -36,7 +36,7 @@

var addId = "addtocart_" + @Model.ProductId + "_EnteredQuantity";
<label for="@addId" class="sr-only">@T("ShoppingCart.AddToCart")</label>
<input asp-for="EnteredQuantity" class="form-control qty-input text-center" type="text" />
<input asp-for="EnteredQuantity" class="form-control qty-input text-center" />
if (!String.IsNullOrEmpty(Model.MeasureUnit))
{
<span class="qty-unit mr-2">
Expand Down
Expand Up @@ -4,7 +4,7 @@
<div class="d-flex flex-row row">
<span class="strong h3 col-md-4 col-12 mb-md-0 pl-0">@T("Newsletter.Title")</span>
<div class="input-group flex-row col-md-8 col-12 px-md-0">
<input type="text" class="form-control" asp-for="NewsletterEmail" id="newsletter-email" placeholder="@T("Newsletter.Email.Placeholder")" aria-label="@T("Newsletter.Email.Placeholder")" />
<input class="form-control" asp-for="NewsletterEmail" id="newsletter-email" placeholder="@T("Newsletter.Email.Placeholder")" aria-label="@T("Newsletter.Email.Placeholder")" />
<label for="newsletter-email" class="sr-only">newsletter</label>
<div class="input-group-append">
<button class="btn btn-outline-secondary" id="newsletter-subscribe-button" type="button"><span class="fas fa-envelope-open"></span></button>
Expand Down
2 changes: 1 addition & 1 deletion Grand.Web/Views/Shared/_Root.Head.cshtml
Expand Up @@ -23,7 +23,7 @@
<meta name="description" content="@(Html.GrandMetaDescription())" />
<meta name="keywords" content="@(Html.GrandMetaKeywords())" />
<meta name="generator" content="grandnode" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
@Html.GrandHeadCustom()
@*This is used so that themes can inject content into the header*@
<partial name="Head" />
Expand Down
Expand Up @@ -32,7 +32,7 @@
<span class="sr-only">Next</span>
</a>
</div>
<script type="text/javascript">
<script>
$("#next").click(function () {
$('#grandCarousel').carousel('next');
});
Expand Down

0 comments on commit 06bc1a3

Please sign in to comment.