mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
31f352e7ce
* try ace * . * update * ... * update * update * test * - * update * fix * . * Revert "." This reverts commit631c30f8c0
. * Revert "fix" This reverts commitbe3dbc9cbd
. * Revert "update" This reverts commit50fc89e800
. * Revert "-" This reverts commit8a6c1fdab3
. * Revert "test" This reverts commit50b3641490
. * update schema * update ui * flags * adjustments
74 lines
2.0 KiB
JavaScript
74 lines
2.0 KiB
JavaScript
|
|
$(function() {
|
|
|
|
$('#side-menu').metisMenu();
|
|
|
|
});
|
|
|
|
var mInit = false;
|
|
|
|
//Loads the correct sidebar on window load,
|
|
//collapses the sidebar on window resize.
|
|
// Sets the min-height of #page-wrapper to window size
|
|
$(function() {
|
|
$(window).bind("load resize", function() {
|
|
var topOffset = 50;
|
|
var width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width;
|
|
if (width < 768)
|
|
{
|
|
if(!mInit)
|
|
{
|
|
mInit = true;
|
|
$('#main-nav').css({"position":"fixed","right":"-235px","top":"45px","width":"230px","border":"1px solid rgba(0, 0, 0, .2)","box-shadow":"0 3px 9px rgba(0, 0, 0, .5)"});
|
|
topOffset = 100; // 2-row-menu
|
|
|
|
$('.mnava').bind('click.smnav', function(){
|
|
$( "#main-nav" ).animate({right: "-235px",}, 300 );
|
|
$(".navbar-toggle").addClass("closed");
|
|
});
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$( "#main-nav" ).removeAttr('style').css({"position":"fixed"});
|
|
$( ".mnava" ).unbind('click.smnav');
|
|
mInit = false;
|
|
}
|
|
|
|
var height = ((this.window.innerHeight > 0) ? this.window.innerHeight : this.screen.height) - 1;
|
|
height = height - topOffset;
|
|
if (height < 1) height = 1;
|
|
if (height > topOffset) {
|
|
$("#page-wrapper").css("min-height", (height-11) + "px");
|
|
}
|
|
});
|
|
|
|
var url = window.location;
|
|
// var element = $('ul.nav a').filter(function() {
|
|
// return this.href == url;
|
|
// }).addClass('active').parent().parent().addClass('in').parent();
|
|
var element = $('ul.nav a').filter(function() {
|
|
return this.href == url;
|
|
}).addClass('active').parent();
|
|
|
|
while(true){
|
|
if (element.is('li')){
|
|
element = element.parent().addClass('in').parent();
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
});
|
|
|
|
$('.navbar-toggle').on('click', function(){
|
|
if($('#main-nav').css("right") != "-2px")
|
|
{
|
|
$('#main-nav').animate({right: "-2px",}, 300 );
|
|
$(".navbar-toggle").removeClass("closed");
|
|
}
|
|
else
|
|
{
|
|
$('#main-nav').animate({right: "-235px",}, 300 );
|
|
$(".navbar-toggle").addClass("closed");
|
|
}
|
|
}); |