facn2 / knafeh

news for multiple countries
0 stars 3 forks source link

updating stories is inefficient #63

Open mattlub opened 7 years ago

mattlub commented 7 years ago

https://github.com/facn2/knafeh/blob/master/scripts/updateContent.js#L3-L13

For each reload, you make changes to the page (a relatively expensive action) lots of times.

It is better to create the elements then append them to the page in 1 action.

mattlub commented 7 years ago

https://www.sitepoint.com/10-ways-minimize-reflows-improve-performance/

tyeung2017 commented 7 years ago

cheers bro will look into that