summaryrefslogtreecommitdiff
path: root/client/html/score.tpl
AgeCommit message (Collapse)Author
2019-04-21client: update fontawesomeHunternif
2016-08-23client/auth: fix being able to rate/fav thingsrr-
2016-08-22client/general: add empty href for link buttonsrr-
In e464e69 I removed href='#' but I noticed that it broke some things. Readding href serves two purposes: - it makes links reachable with Tab key - it makes links clickable with Enter key The alternative to this approach was to introduce [tabindex] and [role] attributes. But not only using tabindex=0 with <a/> is questionable, it'd require adding a keyboard handler that'd intercept space and return key presses and simulated link clicks. Since it's best to leave this kind of thing to the native UI, I went with readding hrefs instead. I believe that hash hrefs, even though being a common practice, are silly, so I decided to settle down with empty hrefs. As a bonus, I added a snippet that prevents middle mouse clicks from opening such links/buttons in new tabs, which was the motivation for e464e69.
2016-07-30client/general: remove faux href='#' from linksrr-
2016-06-23client/views: escape HTMLrr-
This lets client use < > in tag names.
2016-06-12client/comments: add comment list view for postrr-