You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The protocol part of the link to the documentation (and the two other options in that list) is hardcoded to http (no s). It's a bit irritating nowadays to have the crossed out lock to appear on a page especially if there is https available.
<li><ahref="http://latest.oscarcommerce.com" class="btn btn-primary" title="Try the sandbox">Browse the sandbox</a></li>
<li><ahref="http://github.com/django-oscar/django-oscar/" class="btn btn-primary" title="View the source code">View the source code</a></li>
<li><ahref="http://docs.oscarcommerce.com/en/latest/" class="btn btn-default" title="Read the documentation">Read the documentation</a></li>
I would make a PR, but am not sure, since there are two sensible options:
omit the protocol:
<li><a href="//latest.oscarcommerce.com" class="btn btn-primary" title="Try the sandbox">Browse the sandbox</a></li>
<li><a href="//github.com/django-oscar/django-oscar/" class="btn btn-primary" title="View the source code">View the source code</a></li>
<li><a href="//docs.oscarcommerce.com/en/latest/" class="btn btn-default" title="Read the documentation">Read the documentation</a></li>
or add an s to the http
The text was updated successfully, but these errors were encountered:
The protocol part of the link to the documentation (and the two other options in that list) is hardcoded to
http
(no s). It's a bit irritating nowadays to have the crossed out lock to appear on a page especially if there ishttps
available.oscarcommerce.com/index.html
Lines 20 to 22 in 83d9628
I would make a PR, but am not sure, since there are two sensible options:
s
to thehttp
The text was updated successfully, but these errors were encountered: