better readbility, no effective changes

This commit is contained in:
Arthur Schiwon 2014-10-29 19:30:49 +01:00
parent 0e6d47123a
commit 031d6c179f
1 changed files with 5 additions and 5 deletions

View File

@ -159,17 +159,17 @@ LdapFilter.prototype.findFeatures = function() {
* resolving the passed status variable will fire up counting * resolving the passed status variable will fire up counting
* @param {object} status an instance of $.Deferred * @param {object} status an instance of $.Deferred
*/ */
LdapFilter.prototype.beforeUpdateCount = function(status) { LdapFilter.prototype.beforeUpdateCount = function() {
return LdapWizard.runDetectors(this.target, function() { var status = $.Deferred();
LdapWizard.runDetectors(this.target, function() {
status.resolve(); status.resolve();
}); });
return status;
}; };
LdapFilter.prototype.updateCount = function(doneCallback) { LdapFilter.prototype.updateCount = function(doneCallback) {
var beforeUpdateCountDone = $.Deferred();
this.beforeUpdateCount(beforeUpdateCountDone);
var filter = this; var filter = this;
$.when(beforeUpdateCountDone).done(function() { $.when(this.beforeUpdateCount()).done(function() {
if(filter.target === 'User') { if(filter.target === 'User') {
LdapWizard.countUsers(doneCallback); LdapWizard.countUsers(doneCallback);
} else if (filter.target === 'Group') { } else if (filter.target === 'Group') {