[Pkg-owncloud-commits] [owncloud] 106/122: fix filter index on selected groups is updated too early
David Prévot
taffit at moszumanska.debian.org
Sat May 9 00:00:26 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 71e6644ec8133e3da216b4641f78067fa02803d9
Author: Arthur Schiwon <blizzz at owncloud.com>
Date: Wed May 6 15:34:44 2015 +0200
fix filter index on selected groups is updated too early
---
apps/user_ldap/js/wizard/wizardTabAbstractFilter.js | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js b/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
index 1692019..b67392a 100644
--- a/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
+++ b/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
@@ -170,6 +170,7 @@ OCA = OCA || {};
} else {
var $element = $(this.tabID).find('.ldapGroupListSelected');
this.equipMultiSelect($element, groups);
+ this.updateFilterOnType('selected');
}
},
@@ -360,7 +361,7 @@ OCA = OCA || {};
this._saveGroups(selected.concat($available.val()));
$available.find('option:selected').prependTo($selected);
- this.updateFilterOnType();
+ this.updateFilterOnType('available'); // selected groups are not updated yet
},
/**
@@ -373,7 +374,7 @@ OCA = OCA || {};
this._saveGroups(selected);
$selected.find('option:selected').appendTo($available);
- this.updateFilterOnType();
+ this.updateFilterOnType('available'); // selected groups are not updated yet
}
});
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list