Advertisement
Guest User

Untitled

a guest
Aug 21st, 2016
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. using System.Web;
  2. using System.Web.Optimization;
  3.  
  4. namespace blogSystem
  5. {
  6. public class BundleConfig
  7. {
  8. // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
  9. public static void RegisterBundles(BundleCollection bundles)
  10. {
  11. bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
  12. "~/Scripts/jquery-{version}.js"));
  13.  
  14. bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
  15. "~/Scripts/jquery.validate*"));
  16.  
  17. // Use the development version of Modernizr to develop with and learn from. Then, when you're
  18. // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
  19. bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
  20. "~/Scripts/modernizr-*"));
  21.  
  22. bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
  23. "~/Scripts/bootstrap.js",
  24. "~/Scripts/respond.js"));
  25.  
  26. bundles.Add(new StyleBundle("~/Content/css").Include(
  27. "~/Content/bootstrap-template.css",
  28. "~/Content/site.css",
  29. "~/Content/bootstrap-datetimepicker.min.css"));
  30.  
  31. bundles.Add(new ScriptBundle("~/bundles/bootstrap-datetimepicker").Include(
  32. "~/Scripts/moment.js",
  33. "~/Scripts/bootstrap-datetimepicker.js"));
  34.  
  35. bundles.Add(new ScriptBundle("~/bundles/tinymce").Include(
  36. "~/Scripts/tinymce/tinymce.min.js",
  37. "~/Scripts/tinymce/jquery.tinymcse.min.js"));
  38.  
  39. }
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement