Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 using System.Web; | 1 // This file is added automatically by the MVC 5 application template. |
peleyal
2015/01/12 08:11:24
Did you change this file?
If so, add the Google p
jmcgrew
2015/02/20 02:53:17
Done.
| |
2 | |
3 using System.Web; | |
2 using System.Web.Optimization; | 4 using System.Web.Optimization; |
3 | 5 |
4 namespace Calendar.ASP.NET.MVC5 | 6 namespace Calendar.ASP.NET.MVC5 |
5 { | 7 { |
6 public class BundleConfig | 8 public class BundleConfig |
7 { | 9 { |
8 // For more information on bundling, visit http://go.microsoft.com/fwlin k/?LinkId=301862 | 10 // For more information on bundling, visit http://go.microsoft.com/fwlin k/?LinkId=301862 |
9 public static void RegisterBundles(BundleCollection bundles) | 11 public static void RegisterBundles(BundleCollection bundles) |
10 { | 12 { |
11 bundles.Add(new ScriptBundle("~/bundles/jquery").Include( | 13 bundles.Add(new ScriptBundle("~/bundles/jquery").Include( |
(...skipping 10 matching lines...) Expand all Loading... | |
22 bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( | 24 bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( |
23 "~/Scripts/bootstrap.js", | 25 "~/Scripts/bootstrap.js", |
24 "~/Scripts/respond.js")); | 26 "~/Scripts/respond.js")); |
25 | 27 |
26 bundles.Add(new StyleBundle("~/Content/css").Include( | 28 bundles.Add(new StyleBundle("~/Content/css").Include( |
27 "~/Content/bootstrap.css", | 29 "~/Content/bootstrap.css", |
28 "~/Content/site.css")); | 30 "~/Content/site.css")); |
29 } | 31 } |
30 } | 32 } |
31 } | 33 } |
LEFT | RIGHT |