Skip to content
Snippets Groups Projects
Commit 16a98738 authored by David Miller's avatar David Miller
Browse files

Merge pull request #15 from dgelvin/patch-1

More missing semicolons
parents 0c802037 f7f7481c
No related branches found
No related tags found
No related merge requests found
......@@ -12,10 +12,10 @@ $(function() {
topOffset = 50;
width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width;
if (width < 768) {
$('div.navbar-collapse').addClass('collapse')
$('div.navbar-collapse').addClass('collapse');
topOffset = 100; // 2-row-menu
} else {
$('div.navbar-collapse').removeClass('collapse')
$('div.navbar-collapse').removeClass('collapse');
}
height = (this.window.innerHeight > 0) ? this.window.innerHeight : this.screen.height;
......@@ -24,5 +24,5 @@ $(function() {
if (height > topOffset) {
$("#page-wrapper").css("min-height", (height) + "px");
}
})
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment