I have a problem with countdown timer in Magento 2 when Page Cache is enabled.
On page load the timer always start from the same time: e.g. 19:05:00 It's refreshed once if cache is flushed.
I have tried to use tag "cacheable="false" - but this disable FPC on page at all (the page load become too long).
I have also try to use $this->_isScopePrivate = true; in my block class, but this not help, such as timer depend on category attribute. (it use registry('category'))
Can anybody help with this?