Created
September 3, 2025 16:25
-
-
Save propertyhive/d33160085c0028a58b090b360016b974 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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