Prevent error when an ajax request fail
This commit is contained in:
parent
b40f73ad4d
commit
5238456fb1
|
|
@ -79,7 +79,10 @@ var tarteaucitron = {
|
|||
setTimeout(tarteaucitronProLoadServices, 1000);
|
||||
}
|
||||
}
|
||||
origOpen.apply(this, arguments);
|
||||
|
||||
try {
|
||||
origOpen.apply(this, arguments);
|
||||
} catch (err) {}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue