Fix syntax

This commit is contained in:
Louis Bailleul 2015-11-20 14:47:59 +00:00
parent 9ad6763c86
commit 12e37a20ee
2 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,8 @@ else {
if($_SESSION['screen_width']) {
if($_SESSION['screen_width'] >= 800) {
$graph_array['width'] = ($_SESSION['screen_width'] - 420 )/count($periods)+1;
}else {
}
else {
$graph_array['width'] = $_SESSION['screen_width'] - 155;
}
}

View File

@ -157,7 +157,8 @@ $(document).on("click", '.collapse-neighbors', function(event)
if(button.hasClass("glyphicon-plus")) {
button.addClass('glyphicon-minus').removeClass('glyphicon-plus');
}else {
}
else {
button.addClass('glyphicon-plus').removeClass('glyphicon-minus');
}