Skip to content

Commit

Permalink
Update AdminLTE to 2.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhamad Samsudin committed Jul 31, 2018
1 parent 40a0563 commit 8defb0f
Show file tree
Hide file tree
Showing 47 changed files with 6,749 additions and 1,065 deletions.
4 changes: 2 additions & 2 deletions src/AdminLTE/Views/Account/Login.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@
<environment names="Development">
<script src="~/lib/jquery/dist/jquery.js" asp-append-version="true"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js" asp-append-version="true"></script>
<script src="~/js/app.js" asp-append-version="true"></script>
<script src="~/js/adminlte.js" asp-append-version="true"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
</environment>
<environment names="Staging,Production">
<script src="~/lib/jquery/dist/jquery.min.js" asp-append-version="true"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.min.js" asp-append-version="true"></script>
<script src="~/js/app.min.js" asp-append-version="true"></script>
<script src="~/js/adminlte.min.js" asp-append-version="true"></script>
<script src="~/js/site.min.js" asp-append-version="true"></script>
</environment>

Expand Down
4 changes: 2 additions & 2 deletions src/AdminLTE/Views/Shared/Components/Header/Default.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- Header Navbar -->
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<!-- Navbar Right Menu -->
Expand All @@ -26,7 +26,7 @@
@await Component.InvokeAsync("MenuUser")
<!-- Control Sidebar Toggle Button -->
<li>
<a href="#" data-toggle="control-sidebar"><i class="fa fa-question-circle"></i></a>
<a href="#" data-toggle="control-sidebar"><i class="fa fa-gears"></i></a>
</li>
</ul>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</form>*@
<!-- /.search form -->
<!-- Sidebar Menu -->
<ul class="sidebar-menu">
<ul class="sidebar-menu" data-widget="tree">
@foreach (var menu in Model as IEnumerable<SidebarMenu>)
{
if (menu.Type == SidebarMenuType.Header)
Expand Down
4 changes: 2 additions & 2 deletions src/AdminLTE/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ scratch. This page gets rid of all links and provides the needed markup only.
<environment names="Development">
<script src="~/lib/jquery/dist/jquery.js" asp-append-version="true"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js" asp-append-version="true"></script>
<script src="~/js/app.js" asp-append-version="true"></script>
<script src="~/js/adminlte.js" asp-append-version="true"></script>
<script src="~/lib/PACE/pace.js" asp-append-version="true"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
</environment>
<environment names="Staging,Production">
<script src="~/lib/jquery/dist/jquery.min.js" asp-append-version="true"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.min.js" asp-append-version="true"></script>
<script src="~/js/app.min.js" asp-append-version="true"></script>
<script src="~/js/adminlte.min.js" asp-append-version="true"></script>
<script src="~/lib/PACE/pace.min.js" asp-append-version="true"></script>
<script src="~/js/site.min.js" asp-append-version="true"></script>
</environment>
Expand Down
2 changes: 1 addition & 1 deletion src/AdminLTE/wwwroot/_references.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <autosync enabled="true" />
/// <reference path="js/app.js" />
/// <reference path="js/adminlte.js" />
/// <reference path="js/site.js" />
/// <reference path="lib/bootstrap/dist/js/bootstrap.js" />
/// <reference path="lib/datatables/media/js/jquery.dataTables.js" />
Expand Down
Loading

0 comments on commit 8defb0f

Please sign in to comment.