Multiple logical OR Operators in Jade

593 Views Asked by At

Very simple: I want to make an <img>-Tag if the mimetype of my file is an image

case comment.fileType
  when "image/png" || "image/gif" || "image/jpeg"
    img(src="/files/#{comment.fileLink}")

does not work

It works for png, but not for jpeg or gif. Is there a trick?

1

There are 1 best solutions below

0
On BEST ANSWER

I think this will work:

case comment.fileType
  when "image/png"
  when "image/gif"
  when "image/jpeg"
    img(src="/files/#{comment.fileLink}")