summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-27 19:37:49 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-27 19:37:49 -0400
commit6cbe43a233eccbc6c8d1cfdd9c80e391463eb7c8 (patch)
tree1c6ba5b6289ebbc0fd3ae7b21127ac35c6e25f87 /src/SMAPI.Web
parenta26220e3410aa7f0a043c1bcd0ab845e210c1bbc (diff)
downloadSMAPI-6cbe43a233eccbc6c8d1cfdd9c80e391463eb7c8.tar.gz
SMAPI-6cbe43a233eccbc6c8d1cfdd9c80e391463eb7c8.tar.bz2
SMAPI-6cbe43a233eccbc6c8d1cfdd9c80e391463eb7c8.zip
use CDN for jQuery and lz-string (#358)
Diffstat (limited to 'src/SMAPI.Web')
-rw-r--r--src/SMAPI.Web/Views/LogParser/Index.cshtml6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml
index 830cfe47..417fe428 100644
--- a/src/SMAPI.Web/Views/LogParser/Index.cshtml
+++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml
@@ -486,9 +486,8 @@
</div>
</div>
<div id="uploader"></div>
- <script src="https://code.jquery.com/jquery-3.2.1.min.js"
- integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
- crossorigin="anonymous"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" crossorigin="anonymous"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.4.4/lz-string.min.js" crossorigin="anonymous"></script>
<script>
$(function() {
function modClicked(evt) {
@@ -778,6 +777,5 @@
$("#popup-upload").fadeIn();
})
</script>
- <script type="text/javascript" src="lz-string.min.js"></script>
</body>
</html>