-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SideBar- Navegacion entre login y sidebar por mejorar
- Loading branch information
1 parent
8e746e4
commit a34331f
Showing
8 changed files
with
63 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,14 @@ Author: Wrappixel | |
Email: [email protected] | ||
File: js | ||
*/ | ||
|
||
$(function() { | ||
"use strict"; | ||
$(function() { | ||
$(".preloader").fadeOut(); | ||
}); | ||
jQuery(document).on('click', '.mega-dropdown', function(e) { | ||
e.stopPropagation() | ||
e.stopPropagation(); | ||
}); | ||
// ============================================================== | ||
// This is for the top header part and sidebar part | ||
|
@@ -46,12 +47,12 @@ $(function() { | |
$("body").trigger("resize"); | ||
$("body").removeClass("mini-sidebar"); | ||
$('.navbar-brand span').show(); | ||
|
||
} else { | ||
$("body").trigger("resize"); | ||
$("body").addClass("mini-sidebar"); | ||
$('.navbar-brand span').hide(); | ||
|
||
} | ||
}); | ||
|
||
|
@@ -100,14 +101,14 @@ $(function() { | |
//tooltip | ||
// ============================================================== | ||
$(function() { | ||
$('[data-toggle="tooltip"]').tooltip() | ||
}) | ||
$('[data-toggle="tooltip"]').tooltip(); | ||
}); | ||
// ============================================================== | ||
//Popover | ||
// ============================================================== | ||
$(function() { | ||
$('[data-toggle="popover"]').popover() | ||
}) | ||
$('[data-toggle="popover"]').popover(); | ||
}); | ||
// ============================================================== | ||
// Sidebarmenu | ||
// ============================================================== | ||
|
@@ -119,7 +120,7 @@ $(function() { | |
// Perfact scrollbar | ||
// ============================================================== | ||
$('.scroll-sidebar, .right-side-panel, .message-center, .right-sidebar').perfectScrollbar(); | ||
|
||
// ============================================================== | ||
// Resize all elements | ||
// ============================================================== | ||
|
@@ -131,7 +132,7 @@ $(function() { | |
$(this).toggleClass("task-done"); | ||
}); | ||
|
||
|
||
|
||
// ============================================================== | ||
// Collapsable cards | ||
|