I want to check if user's browser support semantic-ui
functionality and show error message in top of page, but allow to user proceed work with web site.
So is any function inside semantic-ui
that check if current browser able to work with semantic, or to check if user's browser is bad, something like isSemanticUiSupportThisBrowser()
?
I tried to grep source from here https://github.com/Semantic-Org/Semantic-UI via find . -name "*.js" -exec grep -i browser {} \; -print
but can not find any function similar to what I want.