In the function object.OutQueueManager (src/js/out_queue.js) there is the following line:
usePost = usePost && window.XMLHttpRequest && ('withCredentials' in new XMLHttpRequest());
If usePost is set to true or false, then you get the desired outcome. Not so if for some reason usePost is undefined. Then you just get undefined.
At least give a warning that it's undefined perhaps?
In the function object.OutQueueManager (src/js/out_queue.js) there is the following line:
If
usePostis set to true or false, then you get the desired outcome. Not so if for some reasonusePostis undefined. Then you just get undefined.At least give a warning that it's undefined perhaps?