v1.2.2
Fix security problems & slow with huge JSON file
data.forEach
doesn't stop the loop after the condition achieve.- and it continues making many requests to
window.history.pushState
. - and this makes the website suspect to security apps.
- also makes the page slower.
===================== - if fixed by replacing it with
for
loop and addbreak
to the condition.