Browse Source

Corrected jquery path after installing LibMan dependencies (replacement to Bower)

pull/758/head
rafsanulhasan 6 years ago
parent
commit
f6abb4d3fb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Web/WebMVC/Views/Shared/_Layout.cshtml

+ 2
- 2
src/Web/WebMVC/Views/Shared/_Layout.cshtml View File

@ -69,13 +69,13 @@
</footer>
<environment names="Development">
<script src="~/lib/jquery/dist/jquery.js"></script>
<script src="~/lib/jquery/jquery.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
</environment>
<environment names="Staging,Production">
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-2.2.0.min.js"
asp-fallback-src="~/lib/jquery/dist/jquery.min.js"
asp-fallback-src="~/lib/jquery/jquery.min.js"
asp-fallback-test="window.jQuery">
</script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js"


Loading…
Cancel
Save