aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/js/wizard/wizard.js
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2015-04-09 14:40:00 +0200
committerArthur Schiwon <blizzz@owncloud.com>2015-04-09 14:40:00 +0200
commit00c29705470141ff0d4d9f72afbbac0b1369eb35 (patch)
treee5cf7e876dbd7fe36b335fac3c31ec69e3791e62 /apps/user_ldap/js/wizard/wizard.js
parentb4c96e6ba0d37b7e2f1fb6aa838c856101ae0c6d (diff)
downloadnextcloud-server-00c29705470141ff0d4d9f72afbbac0b1369eb35.tar.gz
nextcloud-server-00c29705470141ff0d4d9f72afbbac0b1369eb35.zip
update back/continue buttons also on tab click
Diffstat (limited to 'apps/user_ldap/js/wizard/wizard.js')
-rw-r--r--apps/user_ldap/js/wizard/wizard.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/js/wizard/wizard.js b/apps/user_ldap/js/wizard/wizard.js
index faa9de918a4..e8450d1c78f 100644
--- a/apps/user_ldap/js/wizard/wizard.js
+++ b/apps/user_ldap/js/wizard/wizard.js
@@ -52,9 +52,9 @@ OCA = OCA || {};
var filterOnTypeFactory = new OCA.LDAP.Wizard.FilterOnTypeFactory();
var tabs = [];
- tabs.push(new OCA.LDAP.Wizard.WizardTabUserFilter(filterOnTypeFactory));
- tabs.push(new OCA.LDAP.Wizard.WizardTabLoginFilter());
- tabs.push(new OCA.LDAP.Wizard.WizardTabGroupFilter(filterOnTypeFactory));
+ tabs.push(new OCA.LDAP.Wizard.WizardTabUserFilter(filterOnTypeFactory, 1));
+ tabs.push(new OCA.LDAP.Wizard.WizardTabLoginFilter(2));
+ tabs.push(new OCA.LDAP.Wizard.WizardTabGroupFilter(filterOnTypeFactory, 3));
tabs.push(new OCA.LDAP.Wizard.WizardTabAdvanced());
tabs.push(new OCA.LDAP.Wizard.WizardTabExpert());