Skip to content

Commit

Permalink
Correct logic for stripping canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobSanford committed Nov 21, 2023
1 parent 7fcfd66 commit fb3066d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public function buildForm(array $form, FormStateInterface $form_state, SerialTit
* Determines if the current browser supports huge canvases.
*/
private static function browserSupportsHugeCanvas($browser) {
return stripos($browser, 'Safari') === FALSE;
return !stripos($browser, 'Safari') === FALSE;
}

/**
Expand Down

0 comments on commit fb3066d

Please sign in to comment.