altinn-designsystem
Version:
Altinn Design system based on Pattern Lab.
13 lines (11 loc) • 399 B
JavaScript
/* globals $ */
var toggleSelectProfiles = function() {
$('#selectedProfiles').hide();
$('#profile-selection').hide();
$('#alle-jeg-kan-representere-checkbutton-1,#alle-jeg-kan-representere-checkbutton-3').on('click', function() {
$('#profile-selection').hide();
});
$('#select-profile-checkbutton-2').on('click', function() {
$('#profile-selection').show();
});
};