browserify / browserify/http-browserify
callback function is not called as should
Open
- Dominant language
- JavaScript
- Stars
- 245
- Forks
- 104
- PR merge metrics
- No merged PRs in 30d
Description
Server is a digest auth node.
```
HTTPDigest.prototype.request = function (data, options, callback) {
var self = this;
http.request(options, function (res) {
self._handleResponse(data, options, res, callback);
}).end();
};
```
if I do this in node I receive a 401 with nonce in order than to make the second request (the real one)
when browserified the a popup for the credentials is poped and the the function is not called but only after you click ok or cancel button.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.