Fix spacing in fallback case

This commit is contained in:
Buu Nguyen 2015-08-29 10:08:12 -07:00
parent 77097fb952
commit 840cf62350
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ GitHub.prototype.updateLayout = function(sidebarVisible, sidebarWidth) {
}
// falls-back if GitHub DOM has been updated
else $('html').css('margin-left', sidebarVisible ? sidebarWidth - spacing : '')
else $('html').css('margin-left', sidebarVisible ? sidebarWidth + spacing : '')
}
/**