Disable ajax caching in IE to fix backbone fetching

This commit is contained in:
Daniel Friedman
2014-08-04 13:42:18 -04:00
committed by cahrens
parent 04be309ec4
commit 206e4a954d

View File

@@ -73,6 +73,11 @@ domReady(function() {
$('a.show-tender').bind('click', smoothScrollTop);
IframeUtils.iframeBinding();
// disable ajax caching in IE so that backbone fetches work
if ($.browser.msie) {
$.ajaxSetup({ cache: false });
}
});
function smoothScrollLink(e) {