surbhioberoi / github-widget

A widget showing your github details that you can embed in any website.
https://surbhioberoi.github.io/github-widget/
MIT License
657 stars 36 forks source link

Removing repeating selector, use a variable reference #3

Closed surbhioberoi closed 7 years ago

surbhioberoi commented 7 years ago

var stats = $('.stats') and use stats instead of using $('.stats') everywhere.

surbhioberoi commented 7 years ago

(From HN Comment)

Also instead of repeating repos[i] at multiple places, use a variable repo = repos[i] and then reference its properties.