altinn-designsystem
Version:
Altinn Design system based on Pattern Lab.
95 lines (92 loc) • 2.66 kB
JavaScript
/*
globals
AltinnDropdown,
AltinnModal,
AltinnQuickhelp,
addListExpandHandler,
cardsToggle,
codeLookup,
contactForm,
feedbackToggle,
formatOrgNr,
handleFocus,
iOS11BugWorkAround,
listenForAttachmentChanges,
mobileNavigation,
nameChecker,
onConfirmDeletionClick,
onFileInputChange,
popoverGlobalInit,
popoverLocalInit,
setupAddRightsHandler,
setupExpandContent,
setupFormValidation,
setupListRowSelect,
setupOnKeypress,
setupSelectableCheckbox,
setupTruncateLines,
setValidatorSettings,
toggleFilter,
toggleInstant,
toggleSwitch,
truncateBoxButtonNames,
window,
*/
window.infoportalInit = function() {
AltinnModal.init();
AltinnDropdown.init();
AltinnQuickhelp.init();
addListExpandHandler();
contactForm();
feedbackToggle();
handleFocus();
iOS11BugWorkAround();
listenForAttachmentChanges();
mobileNavigation();
popoverGlobalInit();
popoverLocalInit();
setupExpandContent();
setupFormValidation();
setupOnKeypress();
setupSelectableCheckbox();
setupTruncateLines();
setValidatorSettings();
toggleFilter();
toggleInstant();
$.fn.modal.Constructor.prototype._enforceFocus = function() {
$(document)
.off('focusin.bs.modal')
.on('focusin.bs.modal', $.proxy(function(event) {
if (document !== event.target &&
this._element !== event.target &&
!$(this._element).has(event.target).length
&& !$(event.target).hasClass('popover')
&& !$(event.target).closest('.popover').length > 0) {
this._element.focus();
}
}, this));
};
function setupForm1() {
$('body').off('focus', '#contactForm', setupForm1);
setupFormValidation('#contactForm', '#a-js-contactForm-submit');
}
function setupForm2() {
$('body').off('focus', '#contactForm2', setupForm2);
setupFormValidation('#contactForm2', '#a-js-contactForm-submit2');
}
$('body').on('focus', '#contactForm', setupForm1);
$('body').on('focus', '#contactForm2', setupForm2);
function errorMessageCallback(type) {
if (type === 'ext') {
// Prefix to error message where the user tried to upload a forbidden file type
return 'Tillatte filtyper';
} else if (type === 'size') {
// Prefix to error message where the user tried to upload a file which is too big
return 'Maksimum filstørrelse';
}
return 'Det oppstod en feil';
}
listenForAttachmentChanges('#js-attachmentForm', errorMessageCallback);
};
window.infoportalInit();
// $(document).foundation();