// This script will enable Tippy.js on content block labels for Development Notes (in Page Content > [content block] > Settings.
// If you wish to use Tippy elsewhere instantiate it again or modify the following.
// In this case, if elements with both "tippy" and "content_block_label" classes have a title attribute they will receive a tooltip.
tippy('.content_block_label.tippy', {
position: 'left',
animation: 'scale',
duration: 100,
arrow: true
});