This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Use the following code to detect whether the browser is IE --> | |
<g:evaluate var="jvar_is_ie"> | |
try { | |
var isMSIE = Packages.com.glide.sys.Transaction.get().getRequest().getHeader('user-agent').indexOf("MSIE") > 0 ? true : false; | |
} catch (e) { | |
isMSIE = false; | |
} | |
isMSIE; | |
</g:evaluate> | |
<!-- If the browser is IE, set the height & width as a fixed value. If not, set it to just 'expand' --> | |
<j:switch on="${jvar_is_ie}"> | |
<j:case value="true"> | |
gr.sizing = ''; | |
gr.height = '800px'; | |
gr.width = '1100px'; | |
</j:case> | |
<j:default> | |
gr.sizing = 'expand'; | |
</j:default> | |
</j:switch> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment