fix aside width for collapsed state

This commit is contained in:
Mario Vavti
2015-07-09 20:54:13 +02:00
parent 115c18353e
commit 08996e5b9b
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ $(document).ready(function() {
if( $('#css3-calc').width() == 10) {
$(window).resize(function() {
if($(window).width() < 767) {
$('main').css('width', $(window).width() + 284 );
$('main').css('width', $(window).width() + 285 );
} else {
$('main').css('width', '100%' );
}