diff options
| author | Michael <[email protected]> | 2017-05-17 15:47:29 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-17 15:47:29 -0400 |
| commit | e089cfdcd81d5a6936911b9d336e086d9e3be441 (patch) | |
| tree | e5e374a53a3cd7758c99263343904aa161deb199 | |
| parent | 3cf79e6ec82361fc617e437373354ce2feda0c66 (diff) | |
| download | project-unite-e089cfdcd81d5a6936911b9d336e086d9e3be441.tar.gz project-unite-e089cfdcd81d5a6936911b9d336e086d9e3be441.tar.bz2 project-unite-e089cfdcd81d5a6936911b9d336e086d9e3be441.zip | |
use cdn for jquery and bootstrap js
| -rw-r--r-- | Project-Unite/Views/Shared/_Layout.cshtml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Project-Unite/Views/Shared/_Layout.cshtml b/Project-Unite/Views/Shared/_Layout.cshtml index 0e96b54..e625df6 100644 --- a/Project-Unite/Views/Shared/_Layout.cshtml +++ b/Project-Unite/Views/Shared/_Layout.cshtml @@ -19,8 +19,10 @@ { <meta name="description" content="@ViewBag.PageDescription" /> } - @Scripts.Render("~/bundles/jquery") - @Scripts.Render("~/bundles/bootstrap") + <script src="https://code.jquery.com/jquery-3.2.1.min.js" + integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" + crossorigin="anonymous"></script> + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> @RenderSection("scripts", required: false) <title>@ViewBag.Title • ShiftOS</title> @Styles.Render("~/Content/css") |
