antirez / lamernews

Lamer News -- an HN style social news site written in Ruby/Sinatra/Redis/JQuery
http://lamernews.com
Other
1.35k stars 200 forks source link

Typo in voted arrow css? #77

Closed beanz closed 13 years ago

beanz commented 13 years ago

app.rb has:

if news["voted"] == :up
    upclass = "uparrow voted"
    downclass = "downarrow disabled"
elsif news["voted"] == :down
    downclass = "downarrow voted"
    upclass = "downarrow disabled"
end

but I think that last line has a typo and should be:

    upclass = "uparrow disabled"

-Mark