Merge pull request #3763 from FinnStutzenstein/remarks

Fixed remarks (closes #3760)
This commit is contained in:
Emanuel Schütze 2018-06-14 09:31:56 +02:00 committed by GitHub
commit 7ad7e9fd5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 8 deletions

View File

@ -1348,15 +1348,13 @@ angular.module('OpenSlidesApp.core', [
Projector.inject(projectorsChanged);
return $q(function (resolve, reject) {
$http.post('/rest/core/projector/project/', data).then(function (success) {
resolve(success);
}, function (error) {
// revert the changed made earlier
return $http.post('/rest/core/projector/project/', data).catch(
function (error) {
// revert the changes made earlier
Projector.inject(originalProjectors);
reject(error);
});
});
return $q.reject(error);
}
);
},
};
}