Skilljar Certificate Validation Information
Student Angela Aungst
Completion Date Jan. 3, 2022
Course Completed Fundamentals of Digital Research
Offered By Florence Healthcare
Credits earned 1 Credits
var popupConfig = { 'pop-up1':{ title: 'Florence training has moved to Flo University', message: 'Our learning platform is migrating to a new domain. This site will remain accessible until May 30, 2026. To ensure you don\'t lose any progress, complete any in-progress course(s) before this date or please visit Flo University to start new ones.', backgroundColor: '#ffffff', textColor: '#211236', linkColor: '#ff7859', showOnURLs: [ '/', // Shows on ALL pages ], linkText: 'Go to Flo University', linkDestination: 'https://university.florencehc.com/', openLinkInNewTab: 'true', } }; $(window).on('load', function() { $.each(popupConfig, function( index, popupData ) { // Check if already dismissed if(localStorage.getItem('popup-dismissed-' + index)) return; // Check if popup already exists if($('.popup').length > 0) return; var shouldShow = false; if(popupData.showOnURLs.length !== 0){ $.each(popupData.showOnURLs, function( index2, urlWhitelist ){ if(window.location.href.includes(urlWhitelist)){ shouldShow = true; return false; // Break out of loop } }); if(shouldShow){ var popup = ` `; $('body').append(popup); $('.popup-close').click(function() { $('.popup').fadeOut('slow'); localStorage.setItem('popup-dismissed-' + index, 'true'); }); $('.popup-title').html(popupData.title); $('.popup .popup-text').html(popupData.message); if(popupData.linkText !== '' && popupData.linkDestination !== ''){ var linkHTML = '
' + popupData.linkText + ''; $('.popup .popup-text').html($('.popup .popup-text').html() + linkHTML); } $('.popup').css('background-color', popupData.backgroundColor); $('.popup-title').css('color', popupData.textColor); $('.popup-text').css('color', popupData.textColor); $('.popup-link').css('color', popupData.linkColor); setTimeout(function(){ $('.popup').fadeIn('slow'); }, 1000); } } }); });