4f12a4dde1
Persistent user callouts now support deferred links, which are links that can be used to dismiss the callout, and then proceed to follow the link's original location. This ensures that the callout dismissal is properly recorded before the user leaves the page.
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
import PersistentUserCallout from '~/persistent_user_callout';
|
|
|
|
function initPrivacyPolicyUpdateCallout() {
|
|
const callout = document.querySelector('.privacy-policy-update-64341');
|
|
PersistentUserCallout.factory(callout);
|
|
}
|
|
|
|
export default initPrivacyPolicyUpdateCallout;
|