Tibin Thomas

Results 9 comments of Tibin Thomas

Scrolling down with autosize directive is working fine but while scrolling up its jumping to the start of the list.

Anyone in the world other than me worrying about this? Is this issue a solvable or can we solve it by proving it can't be solved?

` document.onreadystatechange = function () { // document.getElementById('load').style.display = 'block'; // document.getElementById('contents').style.display = 'none'; const state = document.readyState; if (state === 'interactive') { document.getElementById('contents').style.display = 'none'; } else if (state...

https://github.com/hapinessjs/ng-universal-module : This solved my issue. Usage of post APIs for getting data was my problem. HttpCachingModule will not support the caching of post calls. Also, if at least one...

> Does happynes supports http2? > […](#) > On Sat, Feb 16, 2019, 6:08 AM Tibin Thomas ***@***.*** wrote: https://github.com/hapinessjs/ng-universal-module : This solved my issue. — You are receiving this...

Lazy loaded module can also be a reason for the flicker.

In some cases you may need to run the async events like setInterval and setTimeout outside of angular zone, to avoid the flicker.

It works. I got this error coz I didn't have a tmp folder in the root of C drive.

In IE, Edge and Firefox cookies will not work properly in localhost, so please host your angular app in some other host. eg : ng s --host 0.0.0.0 It will...