caguiclajmg / platelet-clicker

くすぐったいよ
https://platelets.fun
26 stars 6 forks source link

Various improvements and optimizations #2

Closed DCNick3 closed 5 years ago

DCNick3 commented 5 years ago

Relative urls are more flexible, so absolute ones were replaced with them.

Greatly improved browser support by replacing lamdas with classic function definition.

Replaced css modification to hiding or showing image with css classes, which has less overhead.

Removed unnecessary css libraries, which created 2 additional requests to external sites.

caguiclajmg commented 5 years ago

Looks good, minor nitpicks:

function show_image(index) {
    for (var i = 0; i < images.length; ++i)
        images[i].className = (i === index) ? "container" : "hidden container"; // or its equivalent if-style
}
DCNick3 commented 5 years ago

Looks sane

caguiclajmg commented 5 years ago

Sane enough, merging.