Commit 9ac49271 authored by James Lopez's avatar James Lopez

add JS magic

parent 8b55f43a
...@@ -602,6 +602,21 @@ import initGroupAnalytics from './init_group_analytics'; ...@@ -602,6 +602,21 @@ import initGroupAnalytics from './init_group_analytics';
case 'groups:analytics:show': case 'groups:analytics:show':
initGroupAnalytics(); initGroupAnalytics();
break; break;
case 'admin:groups:edit':
case 'groups:ldap_group_links:index':
const $cnLink = $('.cn-link');
const $filterLink = $('.filter-link');
const showGroupLink = () => {
const $checkedSync = $('input[name="sync_method"]:checked').val() === 'group';
$cnLink.toggle($checkedSync);
$filterLink.toggle(!$checkedSync);
};
$('input[name="sync_method"]').on('change', showGroupLink);
showGroupLink();
break;
} }
switch (path[0]) { switch (path[0]) {
case 'sessions': case 'sessions':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment