Fix side-menu position

This commit is contained in:
Duncan Sommerville 2015-08-19 17:18:42 -04:00
parent cfa543e835
commit a8955e2ea1
6 changed files with 97 additions and 99 deletions

View file

@ -1,6 +1,6 @@
var previewWidth = 482,
previewHeight = 110,
USABILITY_HINT_PADDING = 40;
USABILITY_HINT_TOP = 130;
$(document).ready(function() {
@ -198,7 +198,7 @@ function hideHint(h) {
function showHint(h) {
h.show("slow").removeClass("hidden");
$(".wrapper").css("padding-top", USABILITY_HINT_PADDING); // Account for usability hint
$(".wrapper").css("top", USABILITY_HINT_TOP); // Account for usability hint
}
function getUsabilityHint() {