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
html5boilerplate.com. Version: 4.2.0
unnecessary script reference to googleapis.com causes boilerplate to fail (or load unbelievably slowly after timing out on the script) in China (500million internet users) and other countries where googleapis.com is blocked.
index.html contains:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
since jquery is also included locally this line could be modified to:
<script src="js/vendor/jquery-1.9.1.min.js"></script>
to avoid issues due to non-availability of googleapis.com