Files
EasySoft-ZenTaoPMS/module/testcase/js/exportxmind.ui.js
T
2023-07-24 18:35:25 +08:00

21 lines
450 B
JavaScript

function setDownloading()
{
if(navigator.userAgent.toLowerCase().indexOf("opera") > -1) return true; // Opera don't support, omit it.
$.cookie.set('downloading', 0);
time = setInterval(function()
{
if($.cookie.get('downloading') == 1)
{
$('.modal').trigger('to-hide.modal.zui');
$.cookie.set('downloading', null);
clearInterval(time);
}
}, 300);
return true;
}