parent
2672b95a6b
commit
e1b9f9ef6f
2 changed files with 21 additions and 12 deletions
|
|
@ -8,15 +8,22 @@ namespace AYA.SlnSinort
|
|||
// Para obtener más información sobre Bundles, visite http://go.microsoft.com/fwlink/?LinkId=301862
|
||||
public static void RegisterBundles(BundleCollection bundles)
|
||||
{
|
||||
bundles.Add(new ScriptBundle("~/bundles")
|
||||
.Include("~/Scripts/jquery-3.3.1.js")
|
||||
.Include("~/Scripts/jquery-ui-1.12.1.js")
|
||||
.Include("~/Scripts/jquery.unobtrusive*","~/Scripts/jquery.validate*")
|
||||
.Include("~/Scripts/jquery.validate.min.js")
|
||||
.Include("~/Scripts/modernizr-*")
|
||||
.Include("~/Scripts/bootstrap.min.js")
|
||||
.Include("~/Scripts/toastr.min.js")
|
||||
.Include("~/Scripts/DataTables-1.10.0/jquery.dataTables.js"));
|
||||
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
|
||||
"~/Scripts/jquery-3.3.1.js"));
|
||||
|
||||
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
|
||||
"~/Scripts/jquery-ui-1.12.1.js"));
|
||||
|
||||
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
|
||||
"~/Scripts/jquery.unobtrusive*",
|
||||
"~/Scripts/jquery.validate*"));
|
||||
|
||||
// Use the development version of Modernizr to develop with and learn from. Then, when you're
|
||||
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
|
||||
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
|
||||
"~/Scripts/modernizr-*"));
|
||||
|
||||
bundles.Add(new ScriptBundle("~/bundles/jquery-dataTables").Include("~/Scripts/DataTables-1.10.0/jquery.dataTables.js"));
|
||||
|
||||
bundles.Add(new StyleBundle("~/Content/css")
|
||||
.Include("~/Content/site.css"));
|
||||
|
|
@ -45,8 +52,7 @@ namespace AYA.SlnSinort
|
|||
.Include("~/Scripts/jquery.validate.min.js"));
|
||||
|
||||
|
||||
bundles.Add(new StyleBundle("~/Content/dashboard").Include("~/Content/dashboard.css"));
|
||||
|
||||
//AGREGAR SIGUIENTES SCRIPTS
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,9 +26,12 @@
|
|||
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
|
||||
<link rel="stylesheet" href="~/Content/Principal.css" >
|
||||
@*@Styles.Render("~/Content/dashboard")*@
|
||||
@Scripts.Render("~/bundles")
|
||||
@Scripts.Render("~/bundles/modernizr")
|
||||
@Scripts.Render("~/bundles/jquery")
|
||||
@Scripts.Render("~/bundles/jquery-dataTables");
|
||||
@Styles.Render("~/Content/sinort-css")
|
||||
|
||||
@* Seccion futuros scripts *@
|
||||
</head>
|
||||
|
||||
<body class="hold-transition skin-blue sidebar-mini">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue