/* The following is code to initialize popover components. Popovers are written with HTML, CSS, JS. The Bootstrap component uses PopoverJS to create and display them. The component code can be found in the Bootstrap and PopoverJS source files. */ declare let $: any; export function addPopoverBehavior(selector = '[data-toggle="popover"]') { $(selector).popover({ template: '', trigger: 'hover', }); }