We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f2ad8c + 708aefe commit b3e4362Copy full SHA for b3e4362
src/app/directives/sidebar.js
@@ -522,7 +522,7 @@
522
authStrategy.authenticate().then(function(token) {
523
token.sign(request);
524
$scope.requestOptions = request.toOptions();
525
- jQuery.ajax(request.toOptions()).then(
+ jQuery.ajax(Object.assign(request.toOptions(),{timeout:10000})).then(
526
function(data, textStatus, jqXhr) { handleResponse(jqXhr); },
527
function(jqXhr) { handleResponse(jqXhr); }
528
);
0 commit comments