node.js - Multiple logical OR Operators in Jade -


very simple: want make <img>-tag if mimetype of file image

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

does not work

it works png, not jpeg or gif. there trick?

i think work:

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

Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -