"use strict";App.Utils.CalendarEventPopover=function(){return{renderPhoneIcon:function(phone){return phone?$("
",{html:[$("",{href:"tel:"+phone,target:"_blank",html:[$("",{class:"fas fa-phone-alt"})]})]}).html():null},renderMapIcon:function(user){var data=[];return user.address&&data.push(user.address),user.city&&data.push(user.city),user.state&&data.push(user.state),user.zip_code&&data.push(user.zip_code),data.length?$("",{html:[$("",{href:"https://google.com/maps/place/"+data.join(","),target:"_blank",html:[$("",{class:"fas fa-map-marker-alt"})]})]}).html():null},renderMailIcon:function(email){return email?$("",{html:[$("",{href:"mailto:"+email,target:"_blank",html:[$("",{class:"fas fa-envelope"})]})]}).html():null},renderCustomContent:function(){return null}}}();