Commit 206e4a95 by Daniel Friedman Committed by cahrens

Disable ajax caching in IE to fix backbone fetching

parent 04be309e
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment