We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Good plugin. Thank you for saving me from writing mutator code.
I was using your example code on my local hard drive, and saw that it's loading scripts with protocol-relative URL's
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
...will never work on a local disk, since it's trying to load file:///code.jquery.com/jquery-1.10.2.js . Would recommend using absolute URL's there.
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Good plugin. Thank you for saving me from writing mutator code.
I was using your example code on my local hard drive, and saw that it's loading scripts with protocol-relative URL's
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
...will never work on a local disk, since it's trying to load file:///code.jquery.com/jquery-1.10.2.js . Would recommend using absolute URL's there.
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
The text was updated successfully, but these errors were encountered: