{if $__sessionKeepAlive|isset}
new WCF.System.KeepAlive({@$__sessionKeepAlive});
{/if}
+
+ if ($.browser.msie) {
+ window.onbeforeunload = function() {
+ /* Prevent "Back navigation caching" (http://msdn.microsoft.com/en-us/library/ie/dn265017%28v=vs.85%29.aspx) */
+ };
+ }
});
//]]>
</script>
// CKEditor support (disabled for Android & Windows Phone)
jQuery.browser.ckeditor = (navigator.userAgent.match(/(Android|Windows Phone)/i)) ? false : true;
+
+ // properly detect IE11
+ if (jQuery.browser.mozilla && ua.match(/trident/)) {
+ jQuery.browser.mozilla = false;
+ jQuery.browser.msie = true;
+ }
})();
/**