Skip to content

Instantly share code, notes, and snippets.

@joescii
Created May 8, 2014 18:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joescii/7fd2dd07be210ff0c54f to your computer and use it in GitHub Desktop.
Save joescii/7fd2dd07be210ff0c54f to your computer and use it in GitHub Desktop.
IE9 awareness in Lift
object IfBrowserIs {
def ie9 = if(S.request.map(_.isIE9).openOr(false)) PassThru else ClearNodes
}
<!-- Included only if the browser is ie9! -->
<script src="/js/3rdlib/placeholders-3.0.2.min.js" type="text/javascript" data-lift="IfBrowserIs.ie9"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment