92 lines
2.9 KiB
JavaScript
92 lines
2.9 KiB
JavaScript
$(function() {
|
|
|
|
$('#side-menu').metisMenu();
|
|
|
|
});
|
|
|
|
//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() {
|
|
topOffset = 50;
|
|
width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width;
|
|
if (width < 768) {
|
|
$('div.navbar-collapse').addClass('collapse');
|
|
topOffset = 100; // 2-row-menu
|
|
} else {
|
|
$('div.navbar-collapse').removeClass('collapse');
|
|
}
|
|
|
|
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) + "px");
|
|
}
|
|
});
|
|
|
|
var url = window.location;
|
|
var element = $('ul.nav a').filter(function() {
|
|
return this.href == url || url.href.indexOf(this.href) == 0;
|
|
}).addClass('active').parent().parent().addClass('in').parent();
|
|
if (element.is('li')) {
|
|
element.addClass('active');
|
|
}
|
|
});
|
|
|
|
|
|
|
|
|
|
$(document).ready(function ($) {
|
|
// delegate calls to data-toggle="lightbox"
|
|
$(document).delegate('*[data-toggle="lightbox"]:not([data-gallery="navigateTo"])', 'click', function(event) {
|
|
event.preventDefault();
|
|
return $(this).ekkoLightbox({
|
|
onShown: function() {
|
|
if (window.console) {
|
|
return console.log('Checking our the events huh?');
|
|
}
|
|
},
|
|
onNavigate: function(direction, itemIndex) {
|
|
if (window.console) {
|
|
return console.log('Navigating '+direction+'. Current item: '+itemIndex);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
//Programatically call
|
|
$('#open-image').click(function (e) {
|
|
e.preventDefault();
|
|
$(this).ekkoLightbox();
|
|
});
|
|
$('#open-youtube').click(function (e) {
|
|
e.preventDefault();
|
|
$(this).ekkoLightbox();
|
|
});
|
|
|
|
// navigateTo
|
|
$(document).delegate('*[data-gallery="navigateTo"]', 'click', function(event) {
|
|
event.preventDefault();
|
|
|
|
var lb;
|
|
return $(this).ekkoLightbox({
|
|
onShown: function() {
|
|
|
|
lb = this;
|
|
|
|
$(lb.modal_content).on('click', '.modal-footer a', function(e) {
|
|
|
|
e.preventDefault();
|
|
lb.navigateTo(2);
|
|
|
|
});
|
|
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
});
|