Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 3, 2025 16:25
Show Gist options
  • Save propertyhive/d33160085c0028a58b090b360016b974 to your computer and use it in GitHub Desktop.
Save propertyhive/d33160085c0028a58b090b360016b974 to your computer and use it in GitHub Desktop.
document.addEventListener('click', function (e) {
const btn = e.target.closest('.e-n-tab-title');
if (!btn) return;
afterActivation(btn, () => {
if (btn.getAttribute('aria-selected') === 'true') {
const idx = Number(btn.getAttribute('data-tab-index'));
if ( idx == 2 )
{
initialize_property_street_view();
}
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment