Text box expands only working correctly in Edge

The ELSE part has to be inside a block i.e. inside curly brackets {}

 export function horton_click(event) {
  if ($w('#hortonbio').collapsed) {
   $w('#hortonbio').expand();
   $w('#hortonbio').hide("fade", fadeOptions);
   $w('#hortonbio').show("fade", fadeOptions);
  }  else  {
   $w('#hortonbio').collapse();
   $w('#hortonbio').hide("fade", fadeOptions);
   $w('#hortonbio').show("fade", fadeOptions);
  }
 }