spotify/web-api-examples

Remove protocol in jquery URL to make runnable in https

Opened this issue · 0 comments

On this line is a raw reference to http:

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>

If this application is run in a https container (e.g. Azure) most browsers will not render the page due to mixed content. The line should be changed to read like this:

<script src="//code.jquery.com/jquery-1.10.1.min.js"></script>